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

:root {
    /* Primary color - White/Gray */
    --primary-color: hsl(0, 0%, 100%);
    --primary-hover: hsl(0, 0%, 90%);
    --secondary-color: hsl(0, 0%, 0%);
    
    /* Background colors - Black */
    --background-dark: hsl(0, 0%, 0%);
    --background-card: hsl(0, 0%, 5%);
    --background-secondary: hsl(0, 0%, 8%);
    
    /* Text colors */
    --text-primary: hsl(0, 0%, 100%);
    --text-secondary: hsl(0, 0%, 70%);
    
    /* Border color */
    --border-color: hsl(0, 0%, 20%);
    
    /* Radius */
    --radius: 0.75rem;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Flex', system-ui, sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "opsz" 96, "wdth" 140;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: hsla(220, 15%, 7%, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 70px;
    width: auto;
    background: transparent !important;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-icon {
    color: var(--primary-color);
}

.nav-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.phone-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    color: var(--primary-color);
}

.btn-quote {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background-color: var(--background-dark);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.mobile-menu-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 180px 40px 100px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../assets/hero-bg-CuJOduUt.jpg.jpeg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,165,0,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 165, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.badge-icon {
    color: var(--primary-color);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    color: var(--primary-color);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background-color: var(--background-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badges-scroll {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon-lg {
    color: var(--primary-color);
}

.badge-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.badge-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Meet the Owner */
.meet-owner {
    padding: 120px 40px;
    background-color: var(--background-dark);
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.owner-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.owner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.instagram-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.instagram-btn img {
    width: 16px;
    height: 16px;
}

.instagram-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.4);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.owner-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose {
    padding: 120px 40px;
    background-color: var(--background-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background-color: var(--background-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.1);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 120px 40px;
    background-color: var(--background-dark);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 60px;
}

.tab-btn {
    background-color: transparent;
    color: var(--text-secondary);
    padding: 14px 30px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.tab-btn:hover {
    border-color: var(--primary-color);
}

.hot-badge {
    background-color: #ff4444;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.service-item {
    margin-bottom: 80px;
    position: relative;
}

.service-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.service-badge.mobile-badge {
    background-color: #4CAF50;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-track img,
.carousel-track svg {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    border-radius: 12px;
    display: block;
}

.service-image-single img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.service-image-single {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-image-single img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.before-after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.before-label, .after-label {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.after-label {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.service-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.service-description p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.feynlab-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 165, 0, 0.1);
    color: var(--primary-color);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 25px 0;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.ceramic-package {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--background-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 25px 0;
}

.ceramic-package img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.package-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.package-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.ceramic-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.feature-tag {
    background-color: rgba(255, 165, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.pricing-badge {
    background-color: var(--background-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 25px 0;
}

.price-label {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
    padding: 120px 40px;
    background-color: var(--background-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: var(--background-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.stars {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author span {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
}

/* Quote Form */
.quote-form {
    padding: 120px 40px;
    background-color: var(--background-dark);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.quote-benefits {
    margin-top: 40px;
}

.benefit {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.benefit p {
    font-size: 14px;
    color: var(--text-secondary);
}

.quote-form-container {
    background-color: var(--background-card);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    background-color: var(--background-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -10px;
}

/* FAQ Section */
.faq {
    padding: 120px 40px;
    background-color: var(--background-secondary);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 30px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    text-align: center;
}

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

.cta-badge {
    color: rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: var(--background-card);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-secondary:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--background-secondary);
    padding: 80px 40px 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    background: transparent !important;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--background-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-service-areas {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.footer-service-areas p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .logo {
        position: static;
        transform: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .owner-content {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 140px 15px 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .badges-scroll {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .quote-form-container {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .service-content {
        padding: 0 10px;
    }
    
    .service-info {
        padding: 0 5px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Packages Section */
.packages-section {
    padding: 40px 0;
}

.packages-section img {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* New Image Layouts */
.service-image-horizontal {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.service-image-horizontal img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.service-image-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 12px;
}

.service-image-vertical img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Quote Contact Info */
.quote-contact-info {
    background-color: var(--background-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.quote-contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
    margin-bottom: 40px;
}

.info-list li {
    font-size: 16px;
    color: var(--text-secondary);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.contact-cta {
    text-align: center;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.phone-cta svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.phone-cta > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.phone-cta .label {
    font-size: 12px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.phone-cta .number {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .packages-section img {
        border-radius: 0;
    }
    
    .quote-contact-info {
        padding: 30px 25px;
        max-width: 100%;
    }
    
    .quote-contact-info h3 {
        font-size: 22px;
    }
    
    .phone-cta {
        padding: 16px 24px;
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    
    .phone-cta > div {
        align-items: center;
        text-align: center;
    }
    
    .phone-cta .number {
        font-size: 18px;
    }
    
    .btn-primary {
        justify-content: center;
        text-align: center;
    }
}

/* Packages Image */
.packages-image {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.packages-image:hover {
    transform: scale(1.02);
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-modal img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-close svg {
    display: block;
}

@media (max-width: 768px) {
    .packages-image {
        max-width: 100%;
    }
}

/* Loading State */
img {
    background-color: var(--background-card);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 0;
    height: auto;
    background: transparent !important;
    animation: logoGrow 1s ease forwards;
}

@keyframes logoGrow {
    to {
        width: 350px;
        height: auto;
    }
}

.loading-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    opacity: 0;
    animation: dotsAppear 0.3s ease forwards 1s;
}

@keyframes dotsAppear {
    to {
        opacity: 1;
    }
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-bar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: barContainerAppear 0.3s ease forwards 2s;
}

@keyframes barContainerAppear {
    to {
        opacity: 1;
    }
}

.loading-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #666666, #ffffff, #666666);
    animation: barFill 1.5s ease-in-out forwards 2s;
}

@keyframes barFill {
    to {
        width: 100%;
    }
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

.package-card {
    background-color: var(--background-card);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.1);
}

.diamond-package {
    border-color: rgba(185, 242, 255, 0.3);
}

.diamond-package:hover {
    border-color: rgba(185, 242, 255, 0.6);
    box-shadow: 0 10px 40px rgba(185, 242, 255, 0.1);
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.package-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-section {
    margin-bottom: 30px;
}

.package-section h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.package-includes {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-style: italic;
}

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

.package-features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0 8px 30px;
    position: relative;
    line-height: 1.6;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.package-card .btn-primary {
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
}

/* Maintenance Section */
.maintenance-section {
    margin-top: 80px;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-secondary);
    border-radius: 16px;
}

.maintenance-section-tab {
    padding: 40px 0;
}

.maintenance-content-wrapper {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-secondary);
    border-radius: 16px;
}

.maintenance-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-card {
    background-color: var(--background-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.maintenance-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.maintenance-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.maintenance-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.maintenance-option:last-child {
    border-bottom: none;
}

.maintenance-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.maintenance-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.maintenance-note {
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Addons Section */
.addons-section {
    padding: 40px 0;
}

.addon-item {
    margin-bottom: 80px;
}

.addon-item .service-image-slider,
.addon-item .service-image-horizontal {
    max-width: 600px;
}

/* Before/After Image Slider */
.service-image-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    -webkit-user-select: none;
    user-select: none;
}

.comparison-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-before {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.slider-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.slider-handle::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: bold;
    z-index: 1;
}

/* Fleet Section */
.fleet-section {
    padding: 40px 0;
}

.fleet-content {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.fleet-info-card {
    background-color: var(--background-card);
    padding: 60px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
}

.fleet-icon {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.fleet-info-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.fleet-info-card > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.fleet-benefits {
    text-align: left;
    margin-bottom: 40px;
}

.fleet-benefits h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.fleet-benefits ul {
    list-style: none;
    padding: 0;
}

.fleet-benefits li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 10px 0 10px 30px;
    position: relative;
}

.fleet-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.fleet-cta h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.fleet-cta p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.fleet-cta .btn-primary {
    display: inline-flex;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tab-btn {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .package-card {
        padding: 20px 8px;
    }
    
    .packages-grid {
        padding: 0;
        gap: 5px;
    }
    
    .package-name {
        font-size: 22px;
    }
    
    .package-price {
        font-size: 18px;
    }
    
    .maintenance-section,
    .maintenance-content-wrapper {
        padding: 40px 5px;
    }
    
    .maintenance-title {
        font-size: 28px;
    }
    
    .maintenance-card {
        padding: 20px 10px;
    }
    
    .fleet-info-card {
        padding: 30px 8px;
        margin: 0;
    }
    
    .fleet-content {
        padding: 0;
    }
    
    .fleet-info-card h3 {
        font-size: 22px;
    }
    
    /* Make packages and fleet sections container full width on mobile */
    .services .container {
        padding: 0;
    }
}

.legal-page {
    padding: 150px 0 80px;
}

.legal-section {
    background-color: var(--background-dark);
}

.legal-container {
    max-width: 900px;
}

.legal-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.legal-effective-date {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.legal-container h2 {
    font-size: 28px;
    margin: 32px 0 12px;
}

.legal-container p,
.legal-container li {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.legal-container ul {
    margin: 0 0 10px 20px;
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 120px;
    }

    .legal-title {
        font-size: 34px;
    }

    .legal-container h2 {
        font-size: 24px;
    }
}
