/* 1920s Art Deco Inspired Styling */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Oswald:wght@300;400;500&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8B7355;
    --accent-color: #D4AF37;
    --cream: #F5F2E8;
    --dark-cream: #E8DCC0;
    --text-dark: #2C2416;
    --border-color: #8B7355;
}

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

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(139, 115, 85, 0.03) 100px,
            rgba(139, 115, 85, 0.03) 101px
        );
}

/* Ornamental Borders */
.ornament-border {
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent-color) 0px,
        var(--accent-color) 10px,
        var(--primary-color) 10px,
        var(--primary-color) 20px,
        var(--secondary-color) 20px,
        var(--secondary-color) 30px
    );
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100px;
    }
    100% {
        background-position: 100px;
    }
}

.ornament-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.ornament-border.top {
    border-bottom: 5px solid var(--accent-color);
}

.ornament-border.bottom {
    border-top: 5px solid var(--accent-color);
}

/* Header */
.main-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: var(--cream);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-header::before,
.main-header::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-color);
    transform: rotate(45deg);
}

.main-header::before {
    top: -100px;
    left: -100px;
}

.main-header::after {
    bottom: -100px;
    right: -100px;
}

.header-content {
    position: relative;
    z-index: 1;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Oswald', sans-serif;
    opacity: 0.7;
    color: rgba(245, 242, 232, 0.9);
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.established {
    font-size: 1rem;
    letter-spacing: 2px;
    font-style: italic;
}

/* Navigation */
.main-nav {
    background-color: var(--secondary-color);
    border-bottom: 3px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.main-nav li {
    border-right: 2px solid var(--accent-color);
}

.main-nav li:last-child {
    border-right: none;
}

.main-nav a {
    display: block;
    padding: 15px 30px;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, var(--cream) 0%, var(--dark-cream) 100%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: titleZoom 2s ease-out;
    position: relative;
}

@keyframes titleZoom {
    from {
        letter-spacing: 20px;
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        letter-spacing: 5px;
        opacity: 1;
        transform: scale(1);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.hero-slogan {
    font-size: 2.2rem;
    color: var(--accent-color);
    font-style: italic;
    margin: 30px auto 40px;
    padding: 25px 40px;
    letter-spacing: 2px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    animation: pulsateGold 2s ease-in-out infinite alternate;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    border: 4px double var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: rotate(-1deg);
    max-width: 900px;
    position: relative;
    font-family: 'Oswald', sans-serif;
}

.hero-slogan::before,
.hero-slogan::after {
    content: '★';
    position: absolute;
    font-size: 2rem;
    color: var(--accent-color);
    animation: sparkle 1.5s ease-in-out infinite;
}

.hero-slogan::before {
    top: 15px;
    left: 20px;
}

.hero-slogan::after {
    bottom: 15px;
    right: 20px;
}

@keyframes pulsateGold {
    from {
        color: var(--accent-color);
        transform: rotate(-1deg) scale(1);
    }
    to {
        color: #FFD700;
        transform: rotate(-1deg) scale(1.02);
        filter: brightness(1.2);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border: 15px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background-color: white;
    padding: 10px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-placeholder,
.gallery-placeholder,
.model-placeholder {
    padding: 60px 20px;
    background: linear-gradient(45deg, #f0f0f0 25%, #e0e0e0 25%, #e0e0e0 50%, #f0f0f0 50%, #f0f0f0 75%, #e0e0e0 75%);
    background-size: 20px 20px;
    text-align: center;
    color: #666;
    font-style: normal;
    border: 2px dashed #999;
}

.image-placeholder strong,
.gallery-placeholder strong,
.model-placeholder strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.image-placeholder small,
.gallery-placeholder small,
.model-placeholder small {
    color: #888;
    font-size: 0.9rem;
}

/* Hide placeholder when image loads successfully */
.hero-image-container img:not([src=""]) + .image-placeholder,
.gallery-item img:not([src=""]) + .gallery-placeholder,
.model-card img:not([src=""]) + .model-placeholder {
    display: none;
}


.lead-text {
    font-size: 1.3rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 25px 35px;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(245,242,232,0.9), rgba(232,220,192,0.5));
    border-left: 4px solid var(--accent-color);
    border-right: 4px solid var(--accent-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    position: relative;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.lead-text::before,
.lead-text::after {
    content: '"';
    position: absolute;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.lead-text::before {
    top: 10px;
    left: 10px;
}

.lead-text::after {
    bottom: 10px;
    right: 10px;
    transform: rotate(180deg);
}

a.price-banner {
    display: inline-block;
    background: var(--primary-color);
    color: var(--cream);
    padding: 20px 40px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
    animation: floatBounce 3s ease-in-out infinite, swingRotate 6s ease-in-out infinite;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

a.price-banner:hover {
    transform: rotate(0deg) scale(1.15);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a3a3a 100%);
    text-decoration: none;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes swingRotate {
    0%, 100% {
        transform: rotate(-2deg);
    }
    25% {
        transform: rotate(-4deg);
    }
    75% {
        transform: rotate(0deg);
    }
}

.price-label {
    display: block;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.price {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: 'Oswald', sans-serif;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.decorative-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
    position: relative;
}

.decorative-line::before,
.decorative-line::after {
    content: '◆';
    position: absolute;
    color: var(--accent-color);
    font-size: 20px;
    top: -10px;
}

.decorative-line::before {
    left: -20px;
}

.decorative-line::after {
    right: -20px;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border: 2px solid var(--secondary-color);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-visible {
    animation: slideInUp 0.8s ease forwards;
}

.feature-card.animate-visible:nth-child(1) { animation-delay: 0.1s; }
.feature-card.animate-visible:nth-child(2) { animation-delay: 0.2s; }
.feature-card.animate-visible:nth-child(3) { animation-delay: 0.3s; }
.feature-card.animate-visible:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: rotateY(10deg) rotateX(-10deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    animation: iconSpin 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(360deg);
    }
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Specifications Section */
.specifications {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, var(--primary-color) 100%);
    color: var(--cream);
}

.specifications .section-header h2 {
    color: var(--cream);
}

.specs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.spec-group {
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border: 2px solid var(--accent-color);
}

.spec-group h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    letter-spacing: 2px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
}

.spec-table {
    width: 100%;
}

.spec-table tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 10px 0;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--dark-cream);
}

/* Gallery Section */
.gallery {
    padding: 60px 20px;
    background-color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 10px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background: white;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item.animate-visible {
    animation: galleryPop 0.8s ease forwards;
}

.gallery-item.animate-visible:nth-child(1) { animation-delay: 0.1s; }
.gallery-item.animate-visible:nth-child(2) { animation-delay: 0.2s; }
.gallery-item.animate-visible:nth-child(3) { animation-delay: 0.3s; }
.gallery-item.animate-visible:nth-child(4) { animation-delay: 0.4s; }

@keyframes galleryPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.gallery-item:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-color);
    z-index: 10;
}


.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    background-color: #f5f5f5;
}


.gallery-caption {
    background: var(--primary-color);
    color: var(--cream);
    padding: 10px;
    text-align: center;
    font-style: italic;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background: var(--dark-cream);
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.testimonial.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.testimonial.animate-visible:nth-child(1) { transition-delay: 0.1s; }
.testimonial.animate-visible:nth-child(2) { transition-delay: 0.2s; }
.testimonial.animate-visible:nth-child(3) { transition-delay: 0.3s; }

.quote-mark {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Purchase Section */
.purchase {
    padding: 60px 20px;
    background: radial-gradient(ellipse at center, var(--cream) 0%, var(--dark-cream) 100%);
}

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

.model-selection {
    margin-bottom: 50px;
}

.model-selection h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.model-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.model-card {
    background: white;
    border: 3px solid var(--secondary-color);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: rotateY(90deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.model-card.animate-visible {
    animation: cardEntrance 1s ease forwards;
}

.model-card.animate-visible:nth-child(1) { animation-delay: 0.2s; }
.model-card.animate-visible:nth-child(2) { animation-delay: 0.4s; }
.model-card.animate-visible:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.model-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.model-card.selected {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, white 0%, #fdf8e8 100%);
}

.model-card.selected::after {
    content: '✓ SELECTED';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
}

.model-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.model-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}


.model-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.model-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-btn {
    background: var(--secondary-color);
    color: var(--cream);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.select-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.purchase-btn {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: var(--cream);
    border: 3px solid var(--accent-color);
    padding: 20px 60px;
    font-size: 1.3rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.purchase-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    color: var(--cream);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--cream);
    margin: 20px auto;
    padding: 40px;
    border: 5px solid var(--primary-color);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: var(--secondary-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-color);
}

.modal h2 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Form Styling */
.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border: 1px solid var(--secondary-color);
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--secondary-color);
    background: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    background: var(--cream);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.radio-group label:hover {
    background: white;
    border-color: var(--accent-color);
}

.radio-group input[type="radio"] {
    margin-right: 10px;
}

textarea {
    resize: vertical;
}

#selectedModelDisplay {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
}

#selectedPriceDisplay {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 10px;
}

.submit-order {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: var(--cream);
    border: 3px solid var(--accent-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    z-index: 1;
}

.submit-order:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: var(--cream);
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: var(--cream);
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.9;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-color);
}

.copyright p {
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.slogan {
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        border-right: none;
        border-bottom: 1px solid var(--accent-color);
    }

    .model-options {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* Custom Alert Styles */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.custom-alert-box {
    background: var(--cream);
    border: 5px solid var(--accent-color);
    border-radius: 0;
    padding: 0;
    max-width: 450px;
    width: 90%;
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.custom-alert-header {
    background: var(--primary-color);
    color: var(--cream);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.custom-alert-icon {
    font-size: 2rem;
}

.custom-alert-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin: 0;
}

.custom-alert-message {
    padding: 30px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--secondary-color);
    background: var(--cream);
    margin: 0;
    font-family: 'Merriweather', serif;
}

.custom-alert-button {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    width: 100%;
    transition: all 0.3s ease;
}

.custom-alert-button:hover {
    background: var(--primary-color);
    color: var(--cream);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}