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

body {
    font-family: 'Arial Black', 'Impact', sans-serif;
    line-height: 1.6;
    color: #ddd;
    background: #1a1a1a;
}

header {
    background: #0d0d0d;
    color: white;
    padding: 1.5rem 0;
    border-bottom: 3px solid #ff8c00;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.logo span {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

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

nav a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: #ff8c00;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
}

.hero {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url('../images/hero-bg.jpg') center center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 10rem 2rem;
    border-bottom: 5px solid #ff8c00;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.hero h1::after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    background: #ff8c00;
    margin: 1rem auto;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: #000;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #ff8c00;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
    border-color: #ffaa00;
}

.stats {
    padding: 4rem 2rem;
    background: #0d0d0d;
    border-bottom: 3px solid #333;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    border: 2px solid #333;
    border-top: 4px solid #ff8c00;
    background: rgba(42, 42, 42, 0.5);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff8c00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.services {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

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

h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #ff8c00;
    margin: 1rem auto;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
}

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

.service-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: 2.5rem;
    border: 2px solid #333;
    border-left: 5px solid #ff8c00;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateX(10px);
    border-color: #ff8c00;
    box-shadow: -5px 5px 20px rgba(255, 140, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ff8c00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.service-card p {
    color: #bbb;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

.service-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.service-details h4 {
    font-size: 1rem;
    color: #ff8c00;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details li {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #bbb;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-details li::before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: 900;
}

.gallery {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.gallery-categories {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-btn {
    padding: 1.5rem 1rem;
    background: rgba(42, 42, 42, 0.5);
    border: 2px solid #333;
    color: #ccc;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(255, 140, 0, 0.1);
    border-color: #ff8c00;
    color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section {
    display: none;
}

.gallery-section.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.gallery-pagination button {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: #000;
    border: 2px solid #ff8c00;
    padding: 0.8rem 2rem;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-pagination button:hover {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.gallery-pagination button:disabled {
    background: #333;
    border-color: #444;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gallery-pagination .page-info {
    color: #ff8c00;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.gallery-item {
    position: relative;
    height: 300px;
    background: #2a2a2a;
    border: 2px solid #333;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover {
    border-color: #ff8c00;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.empty-gallery {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
}

.video-item {
    cursor: default;
}

.video-item:hover {
    transform: none;
}

.video-item iframe,
.video-item video {
    width: 100%;
    height: 100%;
    border: none;
}

.video-link {
    cursor: pointer;
    position: relative;
}

.video-link a {
    display: block;
    width: 100%;
    height: 100%;
}

.video-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #fff;
    background: rgba(255, 140, 0, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-link:hover .video-play-btn {
    background: rgba(255, 140, 0, 1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 3px solid #ff8c00;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: #ff8c00;
    color: #000;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-weight: 900;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: #ffaa00;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.8);
    color: #000;
    border: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-weight: 900;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: #ff8c00;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #ff8c00;
    font-size: 1.2rem;
    font-weight: 900;
}

/* Contact */
.contact {
    padding: 5rem 2rem;
    background:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        repeating-linear-gradient(
            0deg,
            #1a1a1a,
            #1a1a1a 20px,
            #0d0d0d 20px,
            #0d0d0d 40px
        );
    color: white;
    border-top: 5px solid #ff8c00;
}

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

.contact-info-card {
    background: rgba(42, 42, 42, 0.5);
    padding: 2.5rem;
    border: 2px solid #333;
    border-top: 4px solid #ff8c00;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    color: #ff8c00;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-card p {
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: #bbb;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-info-card a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 700;
}

.contact-info-card a:hover {
    color: #ff8c00;
}

.contact-sub-text {
    margin-top: 0.5rem;
    color: #bbb;
}

.contact-spacing {
    margin-top: 1rem;
}

.map-container {
    margin-top: 3rem;
    height: 400px;
    border: 3px solid #333;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #ff8c00;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid #ff8c00;
    color: #ff8c00;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-weight: 900;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
.gallery-item:focus-visible {
    outline: 2px solid #ff8c00;
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0d0d0d;
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid #ff8c00;
    }

    nav ul.active {
        display: flex;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Print styles */
@media print {
    header,
    footer,
    .lightbox,
    .gallery-pagination,
    .cta-button,
    .mobile-menu-btn,
    .gallery-categories,
    .map-container {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        padding: 2rem;
        background: none !important;
        color: #000;
        border-bottom: 2px solid #000;
    }

    .hero h1::after,
    h2::after {
        background: #000;
    }

    .service-card {
        background: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .service-card h3,
    .service-details h4,
    .contact-info-card h3 {
        color: #000;
    }

    .service-details li,
    .service-card p,
    .contact-info-card p,
    .contact-sub-text {
        color: #333;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
