/* Color Palette */
:root {
    --primary-gold: #F4D06F;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-light: #fff;
    --border-light: #e0e0e0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Navigation */
.navbar {
    background: var(--dark-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.35rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
}

.brand-mark {
    height: 4rem;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.hero-logo {
    display: block;
    width: min(720px, 100%);
    height: auto;
    margin: 0 auto 1.25rem;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
}

.hero-content > p:nth-of-type(1) {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tagline {
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--primary-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: #e6c500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 208, 111, 0.3);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f9f9f9;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border-top: 4px solid var(--primary-gold);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: #fffbf0;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    background: white;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-bg);
}

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

.service-areas {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--dark-bg);
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 2px solid var(--primary-gold);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.benefit h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.benefit p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #e6c500;
}

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

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    font-family: inherit;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    transition: background 0.3s;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: #f5f5f5;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.gallery-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.gallery-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    border-bottom: 3px solid var(--primary-gold);
    padding-bottom: 0.5rem;
}

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

.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(244, 208, 111, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid var(--primary-gold);
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1.5rem;
    }

    .brand {
        justify-content: flex-start;
        order: 1;
    }

    .brand-mark {
        height: 3.5rem;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .hero {
        padding: 3rem 0;
    }

    .services, .why-us {
        padding: 2rem 0;
    }
}
