/* Original Site Styles */
:root {
    --primary-color: #F57F17;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow-x: hidden;
    background-color: #111;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: #F57F17;
    transition: .3s;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent);
}

.left-links {
    display: flex;
    align-items: center;
}

.right-links {
    display: flex;
    gap: 2.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url('homeImage.jpg');
    background-size: cover;
    background-position: center;
}

.marquee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
    backdrop-filter: blur(2px);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--primary-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, .8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .8);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 3px solid var(--primary-color);
    background-color: rgba(255, 69, 0, .2);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Content Section */
.content-section {
    padding: 80px 50px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.content-section h2 {
    color: #F57F17;
}

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

.card {
    background: #222;
    padding: 40px;
    border-bottom: 4px solid transparent;
    transition: .3s;
}

.card:hover {
    border-bottom: 4px solid var(--primary-color);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.card p {
    line-height: 1.6;
    color: #aaa;
    font-size: .95rem;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 50px;
    text-align: center;
    font-size: .8rem;
    color: #666;
    border-top: 1px solid #333;
    position: relative;
    z-index: 10;
}

.footer-logos {
    background-color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    background-color: #ccc;
    padding: 1rem;
    color: #000;
    text-align: left;
}

.footer-copyright {
    background-color: #333;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.footer-copyright p {
    text-align: right;
    font-size: .8rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #111;
    transition: left .3s ease;
    z-index: 1001;
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

.sidebar a {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding: 10px 0;
}

.sidebar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width .3s;
}

.sidebar a:hover::after {
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1000;
}

.backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 15px;
}

/* Search Form */
.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-form input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.search-form button {
    margin-top: 1rem;
    width: 100%;
}

/* Q&A Styles */
.qa {
    margin-bottom: 20px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.question {
    font-weight: bold;
    cursor: pointer;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color .3s ease;
}

.question:hover {
    color: #fff;
}

.answer {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .3s ease-in-out, max-height .3s ease-in-out;
    color: #F57F17;
    line-height: 1.6;
}

.qa:hover .answer {
    opacity: 1;
    max-height: 1000px;
}

.answer img {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    height: auto;
}

/* Landing Page Styles */
.landing-container {
    padding: 100px 50px 80px;
    background-color: #1a1a1a;
    min-height: 100vh;
}

.map-frame {
    max-width: 800px;
    margin: 0 auto 40px;
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.ai-table {
    max-width: 800px;
    margin: 0 auto 40px;
    border-collapse: collapse;
    width: 100%;
    background-color: #222;
}

.ai-table td {
    padding: 20px;
    border: 1px solid #333;
    text-align: center;
}

.ai-table td:first-child {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
}

.ai-table img {
    max-width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ai-table a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.ai-table a:hover {
    color: #fff;
}

.subscribe-link {
    text-align: center;
    margin-top: 40px;
}

.subscribe-link a {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 3px solid #F57F17;
    color: #F57F17;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.subscribe-link a:hover {
    background-color: #F57F17;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    nav {
        padding: 20px;
    }
    
    .sidebar {
        width: 100%;
        padding: 60px 20px 20px;
    }
    
    .sidebar a {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    body.sidebar-open {
        overflow: hidden;
    }
    
    .landing-container {
        padding: 80px 20px 60px;
    }
    
    .map-frame iframe {
        height: 300px;
    }
    
    .ai-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .ai-table img {
        max-width: 40px;
    }
}
