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

:root {
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-700: #374151;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    scroll-margin-top: 120px;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 20;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 48rem;
    margin: 0 auto;
}

.red-text {
    color: var(--red-600);
}

.white-text {
    color: var(--white);
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
}

.nav-logo h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--red-600);
}

.nav-logo p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

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

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

.nav-links a:hover {
    color: var(--red-600);
}

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

.menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
}

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

.mobile-menu a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--red-600);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black), var(--gray-900), rgba(220, 38, 38, 0.2));
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iIzFmMWYxZiIgc3Ryb2tlLXdpZHRoPSIyIiBvcGFjaXR5PSIuMSIvPjwvZz48L3N2Zz4=');
    opacity: 0.2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black), transparent, transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    max-width: 80rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 .red-text {
    animation: pulse 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--red-600);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--red-700);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--red-600);
    color: var(--red-600);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator:hover {
    color: var(--white);
}

/* Services Section */
.services {
    padding: 10rem 0 5rem;
    background: linear-gradient(to bottom, var(--black), var(--gray-900), var(--black));
}

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

.service-card {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray-700);
    transition: all 0.5s;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-0.5rem);
    border-color: var(--red-600);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(6deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--red-600);
}

.service-card p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-card li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--red-600);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Gallery Section */
.gallery {
    padding: 10rem 0 5rem;
    background-color: var(--black);
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.instagram-header svg {
    color: var(--red-600);
}

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

.instagram-embeds {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.instagram-embeds .instagram-media {
    max-width: 100% !important;
    min-width: 300px !important;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loading {
    text-align: center;
    padding: 3rem;
    color: var(--gray-400);
    font-size: 1.125rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.close-lightbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--red-600);
}

.lightbox-content {
    max-width: 64rem;
    max-height: 90vh;
    overflow: auto;
}

#lightboxImg {
    width: 100%;
    border-radius: 0.5rem;
}

#lightboxCaption {
    color: var(--white);
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--gray-900);
    border-radius: 0.5rem;
}

#lightboxLink {
    display: block;
    margin-top: 1rem;
    text-align: center;
}

/* About Section */
.about {
    padding: 10rem 0 5rem;
    background: linear-gradient(to bottom, var(--black), var(--gray-900), var(--black));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.badges {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    background-color: var(--gray-800);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
}

.badge-primary {
    background-color: var(--red-600);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(220, 38, 38, 0.2);
    border-radius: 1rem;
    transform: rotate(3deg);
}

.about-image img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

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

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    border-radius: 0.75rem;
    border: 1px solid var(--gray-700);
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-card:hover {
    transform: translateY(-0.5rem);
    border-color: var(--red-600);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray-400);
}

/* Contact Section */
.contact {
    padding: 10rem 0 5rem;
    background-color: var(--black);
}

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

.contact-info-card {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-700);
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-info-card:hover {
    transform: translateY(-0.5rem);
    border-color: var(--red-600);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-info-card p {
    color: var(--gray-400);
}

.map-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-700);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--gray-900), var(--black));
    border-top: 1px solid var(--gray-800);
    padding: 3rem 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--red-600);
}

.footer-logo p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-col p {
    color: var(--gray-400);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--gray-400);
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--red-600);
    transform: scale(1.1);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--red-600);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red-600);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--gray-900);
}

::-webkit-scrollbar-thumb {
    background-color: var(--red-600);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--red-700);
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card:nth-child(1) {
        animation-delay: 0s;
    }
    .stat-card:nth-child(2) {
        animation-delay: 0.1s;
    }
    .stat-card:nth-child(3) {
        animation-delay: 0.2s;
    }
    .stat-card:nth-child(4) {
        animation-delay: 0.3s;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .gallery-grid,
    .instagram-embeds {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
