/* CSS Variables - Design System */
:root {
    --background: hsl(220, 20%, 8%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(220, 18%, 12%);
    --card-foreground: hsl(210, 40%, 98%);
    --primary: hsl(195, 100%, 50%);
    --primary-foreground: hsl(220, 20%, 8%);
    --secondary: hsl(220, 15%, 18%);
    --secondary-foreground: hsl(210, 40%, 98%);
    --muted: hsl(220, 15%, 15%);
    --muted-foreground: hsl(215, 20%, 65%);
    --border: hsl(220, 15%, 20%);
    --steel: hsl(210, 15%, 45%);
    --steel-light: hsl(210, 15%, 65%);
    --laser-glow: hsl(195, 100%, 60%);
    --laser-dim: hsl(195, 80%, 40%);

    --gradient-laser: linear-gradient(135deg, hsl(195 100% 50% / .2) 0%, hsl(195 80% 40% / .1) 100%);
    
    --radius: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400..700;1,400..700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    font-weight: 400;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.bg-secondary {
    background-color: var(--secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Responsive media */
img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition);
    background-color: transparent;
    padding: 0.25rem 0;
}

.nav-cta {
    padding: 0.5rem 1rem !important;
    font-weight: 500 !important;
    line-height: 1;
}

nav.scrolled {
    background-color: rgba(22, 25, 31, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
}

.brand-accent {
    color: var(--primary);
}

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

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary);
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    background-color: var(--muted);
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

/* ========================= */
/*       HERO SECTION        */
/* ========================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
}

/* Background layers */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.40;
}

/* Laser glow layer */
.hero-gradient-laser {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: var(--gradient-laser);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
}

/* Top small label */
.hero-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

/* Main title */
.hero-title {
    color: var(--foreground);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@keyframes pulse {
    50% { opacity: .5; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: var(--laser-glow);
    box-shadow: 0 0 30px hsla(195, 100%, 50%, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--muted);
}

 /* Text */
.text-primary {
    color: var(--primary);
}

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

.text-muted-foreground {
    color: var(--muted-foreground);
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.mr-05 {
    margin-right: 0.5rem;
}


/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.intro {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
    text-align: center;
}

/* Override for About section text alignment */
#about .intro {
    text-align: left;
    margin-left: 0;
}

.section-dark {
    background-color: var(--card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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


.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.icon {
    width: 26px;
    height: 26px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.about-image {
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.about-image-frame:hover .about-image {
    transform: scale(1.03);
}

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Services */
#services {
    background-color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Cards: larger, more padding, rounded, dark background */
.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: var(--transition);
}

/* Hover glow */
.card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px hsla(195, 100%, 60%, 0.30);
    transform: translateY(-4px);
}

/* Icon container */
#services .icon-wrapper {
    display: inline-block;
    background-color: hsl(206deg 34.88% 16.86%);
    border-radius: 0.75rem;
    padding: 1rem;
}

#services .icon {
    /* background-color: var(--muted); */
    border-radius: 10px;
    width: 2rem;
    height: 2rem;
}

/* Titles */
.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
} 

/* Description spacing */
.card-description {
    line-height: 1.625;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    z-index: 10;
    max-width: 90vw;
    max-height: 90vh;
}

.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.modal-close svg {
    width: 32px;
    height: 32px;
}

/* Contact */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--laser-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-role {
    color: var(--muted-foreground);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition);
    padding: 1rem;
    border-radius: var(--radius);
}

.contact-item:hover {
    background-color: var(--muted);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-value {
    font-weight: 600;
}

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

@media (min-width: 640px) {
    .contact-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

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

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand .brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.footer-copyright {
    color: var(--muted-foreground);
}

/* Utilities */
.hidden {
    display: none;
}