/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    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: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    color: #C9A96E;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #C9A96E;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C9A96E, #D4B879);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #C9A96E;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #C9A96E;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #bbb;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #C9A96E, #D4B879);
    color: #000;
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #C9A96E;
    border: 2px solid #C9A96E;
}

.cta-button.secondary:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #C9A96E;
    font-weight: 500;
    margin-bottom: 0;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C9A96E, #D4B879);
    border-radius: 2px;
}

/* Value Proposition */
.value-proposition {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 169, 110, 0.3);
}

.benefit-card h3 {
    color: #C9A96E;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Technology Section */
.ceramic-technology,
.professional-advantage,
.interior-protection {
    background: #0f0f0f;
}

.tech-features,
.installation-benefits,
.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-feature,
.install-benefit,
.protection-item {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #C9A96E;
    transition: all 0.3s ease;
}

.tech-feature:hover,
.install-benefit:hover,
.protection-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-feature h4,
.install-benefit h4,
.protection-item h4 {
    color: #C9A96E;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Financial Benefits */
.financial-benefits {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.cost-benefit-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.cost-section,
.benefit-section {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.cost-section h3,
.benefit-section h3 {
    color: #C9A96E;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.cost-section ul,
.benefit-section ul {
    list-style: none;
    padding: 0;
}

.cost-section li,
.benefit-section li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 2rem;
}

.cost-section li::before,
.benefit-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A96E;
    font-weight: bold;
}

.highlight {
    background: linear-gradient(135deg, #C9A96E, #D4B879);
    color: #000;
    padding: 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

/* Services Page */
.services-grid {
    background: #0f0f0f;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: 12px;
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 169, 110, 0.3);
}

.service-header {
    background: linear-gradient(135deg, #C9A96E, #D4B879);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    color: #000;
    margin: 0;
    font-size: 1.8rem;
}

.service-badge {
    background: rgba(0, 0, 0, 0.8);
    color: #C9A96E;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-content {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-content h4 {
    color: #C9A96E;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #ccc;
}

.service-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C9A96E;
    font-weight: bold;
}

.feature-list {
    margin-top: 1rem;
}

.feature-item {
    background: rgba(201, 169, 110, 0.05);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-left: 3px solid #C9A96E;
}

.feature-item strong {
    color: #C9A96E;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #bbb;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C9A96E, #D4B879);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Warranties */
.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.warranty-item {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.warranty-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.3);
}

.warranty-item h3 {
    color: #C9A96E;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Gallery/Showcase */
.portfolio-grid {
    background: #0f0f0f;
}

.portfolio-category {
    margin-bottom: 5rem;
}

.category-title {
    color: #C9A96E;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    border-bottom: 2px solid #C9A96E;
    padding-bottom: 0.5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.project-card {
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 169, 110, 0.3);
}

.project-preview {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.project-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.3) 0%, transparent 70%);
}

.tesla-model-s {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.tesla-model-x {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.luxury-sedan {
    background: linear-gradient(135deg, #059669, #10b981);
}

.sports-car {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.fleet-vehicle {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.delivery-vehicle {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.classic-car {
    background: linear-gradient(135deg, #7c2d12, #ea580c);
}

.exotic-car {
    background: linear-gradient(135deg, #be123c, #f43f5e);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.project-details {
    padding: 2rem;
}

.project-details h3 {
    color: #C9A96E;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-tag {
    background: rgba(201, 169, 110, 0.1);
    color: #C9A96E;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.project-results {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.result-item strong {
    color: #C9A96E;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.3);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #C9A96E;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* About Page */
.about-story,
.expertise-section,
.partnerships,
.values,
.why-choose-us {
    background: #0f0f0f;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.highlight-item h3 {
    color: #C9A96E;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #bbb;
    font-size: 0.9rem;
    margin: 0;
}

.expertise-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-card,
.value-item {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.expertise-card:hover,
.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.3);
}

.expertise-card h3,
.value-item h3 {
    color: #C9A96E;
    margin-bottom: 1rem;
}

.partners-content {
    max-width: 800px;
    margin: 0 auto;
}

.partner-info {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.partner-info h3 {
    color: #C9A96E;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partner-benefits {
    background: rgba(201, 169, 110, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #C9A96E;
}

.partner-benefits h4 {
    color: #C9A96E;
    margin-bottom: 1rem;
}

.partner-benefits ul {
    list-style: none;
    padding: 0;
}

.partner-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.partner-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A96E;
    font-weight: bold;
}

.reasons-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #C9A96E;
}

.reason h4 {
    color: #C9A96E;
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-intro {
    background: #0f0f0f;
}

.contact-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.benefit-item h4 {
    color: #C9A96E;
    margin-bottom: 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-form-container h2 {
    color: #C9A96E;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #C9A96E;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A96E;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(135deg, #C9A96E, #D4B879);
    color: #000;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.contact-info {
    background: rgba(201, 169, 110, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-info h2 {
    color: #C9A96E;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-method {
    margin-bottom: 2.5rem;
}

.contact-method h3 {
    color: #C9A96E;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method a {
    color: #C9A96E;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.contact-certifications {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-certifications h3 {
    color: #C9A96E;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cert-list {
    display: grid;
    gap: 1rem;
}

.cert-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cert-item strong {
    color: #C9A96E;
    display: block;
    margin-bottom: 0.3rem;
}

.cert-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #bbb;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-step {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A96E, #D4B879);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: #C9A96E;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    font-size: 0.9rem;
}

.contact-guarantee,
.guarantee-content {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.3);
}

.guarantee-item h3 {
    color: #C9A96E;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section,
.service-cta,
.showcase-cta {
    background: linear-gradient(135deg, #C9A96E, #D4B879);
    color: #000;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #000;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-button.primary,
.service-cta .cta-button.primary,
.showcase-cta .cta-button.primary {
    background: rgba(0, 0, 0, 0.9);
    color: #C9A96E;
    border: 2px solid rgba(0, 0, 0, 0.9);
}

.cta-section .cta-button.primary:hover,
.service-cta .cta-button.primary:hover,
.showcase-cta .cta-button.primary:hover {
    background: transparent;
    color: #000;
    border-color: #000;
}

.cta-section .cta-button.secondary,
.service-cta .cta-button.secondary,
.showcase-cta .cta-button.secondary {
    background: transparent;
    color: #000;
    border: 2px solid rgba(0, 0, 0, 0.8);
}

.cta-section .cta-button.secondary:hover,
.service-cta .cta-button.secondary:hover,
.showcase-cta .cta-button.secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #C9A96E;
    margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-contact p {
    color: #999;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #C9A96E;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A96E, #D4B879);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

.slide-in {
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid,
    .tech-features,
    .installation-benefits,
    .protection-grid,
    .process-steps,
    .warranty-grid,
    .expertise-grid,
    .values-grid,
    .testimonials-grid,
    .consultation-benefits,
    .process-timeline,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-benefit-analysis {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .benefit-card,
    .service-card,
    .project-card,
    .expertise-card,
    .value-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 2rem;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-to-top,
    .cta-section,
    .service-cta,
    .showcase-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .benefit-card,
    .service-card,
    .project-card,
    .expertise-card,
    .value-item,
    .testimonial-card {
        border: 2px solid #C9A96E;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in,
    .slide-in,
    .slide-in-right {
        opacity: 1;
        transform: none;
    }
}