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

:root {
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --silver-400: #94a3b8;
    --silver-600: #475569;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Empire logo: crown on imperial shield */
.logo-icon.logo-empire {
    width: 52px;
    height: 52px;
    background: linear-gradient(160deg, #1e3a5f 0%, #0f172a 50%, #0c4a6e 100%);
    border: 2px solid var(--gold-400);
    border-radius: 10px 10px 50% 50% / 10px 10px 20% 20%;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}

.logo-icon.logo-empire i {
    font-size: 1.6rem;
    color: var(--gold-400);
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.footer .logo-icon.logo-empire i {
    color: var(--gold-400);
}

.logo-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--gold-400);
    border-radius: 50%;
    border: 2px solid white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

.logo-main,
.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.25;
    color: var(--gray-900);
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

/* Footer: light text on dark background */
.footer .logo-main,
.footer .logo-sub {
    color: rgba(255, 255, 255, 0.95);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--gray-900);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: var(--gold-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-primary i {
    color: var(--gray-900);
}

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

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17,24,39,0.9), rgba(17,24,39,0.7), rgba(17,24,39,0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-accent {
    display: block;
    color: var(--gold-400);
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-gold {
    background: var(--gold-500);
    color: var(--gray-900);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn-gold:hover {
    background: var(--gold-600);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

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

.hero-feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.hero-feature h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-feature p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.seasonal-notice {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.seasonal-notice i {
    color: var(--gold-400);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.white {
    color: white;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-600), var(--primary-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    color: var(--gold-400);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.white p {
    color: rgba(255,255,255,0.9);
}

/* Founding Client Special Promo */
.promo-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 3rem 1rem;
}

.promo-banner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.promo-tag {
    display: inline-block;
    background: var(--gold-400);
    color: var(--gray-900);
    padding: 0.4rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.promo-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.95);
}

.promo-offer {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: white;
    margin-bottom: 1.25rem;
}

.promo-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.promo-cta {
    display: inline-block;
    background: var(--gold-500);
    color: var(--gray-900);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.promo-cta:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
}

.promo-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
}

/* How It Works */
.how-it-works {
    background: var(--gray-50);
}

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

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-600);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--gold-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
    font-weight: bold;
    font-size: 0.875rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--gray-600);
}

/* Packages */
.packages {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid var(--gray-200);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-card:hover .package-price-single {
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.35);
}

.package-card.popular {
    border-color: var(--gold-400);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold-400);
    color: var(--gray-900);
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 10;
}

.package-bar {
    height: 4px;
}

.bronze-bar {
    background: linear-gradient(to right, #cd7f32, #8b4513);
}

.gold-bar {
    background: linear-gradient(to right, var(--gold-400), var(--gold-600));
}

.diamond-bar {
    background: linear-gradient(to right, #b9f2ff, #4fc3f7);
}

.platinum-bar {
    background: linear-gradient(to right, #e5e4e2, #a8a8a8);
}

.package-content {
    padding: 2rem;
    text-align: center;
}

.package-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-price-wrap {
    text-align: center;
    margin-bottom: 1rem;
}

.package-price-original {
    display: block;
    font-size: 1.25rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.package-price-discount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
}

.package-content h3 i {
    font-size: 0.85em;
    opacity: 0.9;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.package-desc {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.package-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: -0.5rem;
}

.package-category {
    margin-bottom: 3rem;
}

.mobile-service-banner {
    background: var(--gray-900);
    color: var(--gold-400);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.95rem;
}

.price-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0 1.25rem 0;
}

.package-price-single {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.3) 100%);
    border: 2px solid var(--gold-400);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.25);
}

.exterior-wash-note {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.exterior-wash-note i {
    color: var(--primary-600);
    margin-right: 0.5rem;
}

.exterior-future {
    color: var(--gray-600);
    font-style: italic;
}

.package-tier-desc {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.packages-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.package-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    text-align: center;
}

.grand-opening-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-900);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.grand-opening-text {
    font-size: 1rem;
}

.grand-opening-offer {
    font-size: 1rem;
    background: var(--gold-400);
    color: var(--gray-900);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 800;
}

.package-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 1rem;
    text-align: center;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
}

.package-features li {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.package-features li i {
    color: var(--primary-600);
    margin-top: 0.25rem;
}

.package-btn {
    width: 100%;
    display: block;
    text-align: center;
    background: var(--primary-600);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.package-btn:hover {
    background: var(--primary-700);
}

.gold-btn {
    background: var(--gold-500);
    color: var(--gray-900);
}

.gold-btn:hover {
    background: var(--gold-600);
}

/* Gallery */
.gallery {
    background: var(--gray-50);
}

.gallery-before-after {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.before-after-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.before-after-card h3 {
    background: var(--gray-900);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.before-after-item {
    position: relative;
}

.before-after-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s;
}

.before-after-item img:hover {
    opacity: 0.9;
}

/* Same car: "before" image with dirty/dusty filter effect */
.before-after-item img.img-before {
    filter: brightness(0.55) saturate(0.5) contrast(1.05) sepia(0.2);
}

.before-after-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: -0.5rem 0 1rem 0;
    font-style: italic;
}

.badge {
    position: absolute;
    top: 8px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
}

.badge-before {
    left: 8px;
    background: #ef4444;
}

.badge-after {
    right: 8px;
    background: #10b981;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card i {
    color: var(--primary-600);
    font-size: 2.5rem;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.stars {
    color: var(--gold-400);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Business Section */
.business {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800), var(--gray-900));
    color: white;
}

.business-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-400);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-size: 2rem;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.business-benefits h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-600);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255,255,255,0.8);
}

.business-cta {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
}

.business-cta p {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.business-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-400);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
}

.business-phone:hover {
    color: var(--gold-300);
}

.business-form-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.business-form-container h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.business-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-form input,
.business-form select,
.business-form textarea {
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-family: inherit;
}

.business-form input::placeholder,
.business-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.business-form input:focus,
.business-form select:focus,
.business-form textarea:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.business-submit {
    background: var(--gold-500);
    color: var(--gray-900);
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.business-coming-soon .business-content {
    display: none;
}

.business-coming-soon .section-header {
    position: relative;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--gold-400);
    color: var(--gray-900);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
}

.business-submit:hover {
    background: var(--gold-600);
}

/* Contact Section */
.contact {
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-600);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-item p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.payment-methods {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.payment-methods h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-badges span {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.why-choose {
    background: var(--primary-600);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-choose ul {
    list-style: none;
}

.why-choose li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.why-choose li i {
    color: var(--gold-400);
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.1);
}

.contact-submit {
    background: var(--primary-600);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-submit:hover {
    background: var(--primary-700);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    margin: 1rem 0;
    max-width: 400px;
    line-height: 1.6;
}

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

.footer-rating .stars {
    color: var(--gold-400);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

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

.footer-payment {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-payment p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-payment div {
    display: flex;
    gap: 0.5rem;
}

.footer-payment span {
    background: rgba(255,255,255,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

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

.footer-domain {
    display: block;
    margin-top: 0.5rem;
    color: var(--gold-400);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        padding: 6rem 1rem 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .business-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .gallery-before-after {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

