* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff3333;
    --secondary-color: #ffcc00;
    --dark-bg: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #999;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23ff3333" fill-opacity="0.05" d="M0 300L50 280Q100 260 150 270T250 290Q300 300 350 280T450 250Q500 240 550 260T650 290Q700 300 750 285T850 260Q900 250 950 270T1050 300Q1100 310 1150 290L1200 270V0H0Z"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    letter-spacing: 0.5rem;
    color: var(--white);
    text-shadow: 0 0 20px var(--primary-color),
                 0 0 40px var(--primary-color),
                 4px 4px 0px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--primary-color),
                     0 0 40px var(--primary-color),
                     4px 4px 0px rgba(0,0,0,0.5);
    }
    to {
        text-shadow: 0 0 30px var(--primary-color),
                     0 0 60px var(--primary-color),
                     0 0 80px var(--primary-color),
                     4px 4px 0px rgba(0,0,0,0.5);
    }
}

.tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--dark-gray);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.cta-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.5);
    background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
}

/* About Section */
.about-section {
    background: var(--dark-gray);
}

.about-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--light-gray);
    line-height: 1.8;
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.owner-card {
    background: var(--dark-bg);
    padding: 2.5rem 2rem;
    border: 2px solid var(--medium-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.owner-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.owner-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
}

.owner-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.owner-age {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.owner-bio {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-callout {
    text-align: center;
    padding: 2rem;
    background: var(--medium-gray);
    border: 2px solid var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.contact-callout p {
    font-size: 1.3rem;
    color: var(--white);
    margin: 0;
}

.contact-callout a {
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
}

.contact-callout a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

/* Services Section */
.services-section {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-tile {
    background: var(--dark-gray);
    padding: 2rem;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
    transition: left 0.5s;
}

.service-tile:hover::before {
    left: 100%;
}

.service-tile:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-tile h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-tile p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: var(--dark-bg);
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.price-item {
    background: var(--dark-gray);
    padding: 2.5rem 2rem;
    border: 2px solid var(--medium-gray);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.price-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.price-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.pricing-notes {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--medium-gray);
    border-left: 4px solid var(--primary-color);
}

.pricing-notes .note {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.pricing-notes .note:last-child {
    margin-bottom: 0;
}

.pricing-notes .note strong {
    color: var(--white);
}

.pricing-notes .payment {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact-section {
    background: var(--dark-gray);
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.contact-intro a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-intro a:hover {
    color: var(--primary-color);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    background: var(--medium-gray);
    border: 2px solid var(--medium-gray);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--medium-gray);
}

.footer p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
        letter-spacing: 0.3rem;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 0.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
