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

:root {
    --cyan: #22d3ee;
    --cyan-dark: #06b6d4;
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #a855f7;
    --purple-dark: #9333ea;
    --black: #000000;
    --zinc-950: #09090b;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --zinc-700: #3f3f46;
    --zinc-400: #a1a1aa;
    --zinc-300: #d4d4d8;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

.text-cyan { color: var(--cyan); }
.text-pink { color: var(--pink); }
.text-purple { color: var(--purple); }

.gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Tags */
.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 9999px;
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-tag.pink {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
    color: var(--pink);
}

.section-tag.purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--purple);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--zinc-400);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(236, 72, 153, 0.5);
    color: var(--pink);
}

.btn-secondary:hover {
    border-color: var(--pink);
    background: rgba(236, 72, 153, 0.1);
}

.btn-instagram {
    background: linear-gradient(135deg, var(--purple), var(--pink), #f97316);
    color: var(--white);
    padding: 1rem 2rem;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

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

.logo img {
    height: 3.5rem;
    width: auto;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--zinc-300);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--cyan);
}

.header-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 0.5rem;
    color: var(--cyan);
    font-weight: 500;
    transition: all 0.3s;
}

.header-phone:hover {
    background: rgba(34, 211, 238, 0.2);
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zinc-300);
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.nav-mobile a {
    color: var(--zinc-300);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 0;
    transition: color 0.3s;
}

.nav-mobile a:hover {
    color: var(--cyan);
}

.nav-phone {
    color: var(--cyan) !important;
    margin-top: 0.5rem;
}

body.menu-open .nav-mobile {
    display: flex;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-logo {
    width: clamp(200px, 40vw, 380px);
    margin: 0 auto 2rem auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.3));
    display: block;
}

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

.hero-tagline {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 9999px;
    color: var(--cyan);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    width: 100%;
}

.hero-desc {
    color: var(--zinc-400);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

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

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--zinc-400);
    animation: bounce 2s infinite;
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--zinc-950);
    position: relative;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.service-card:hover {
    border-color: rgba(34, 211, 238, 0.5);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--cyan);
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(34, 211, 238, 0.2);
}

.service-card h3 {
    margin-bottom: 1rem;
    transition: color 0.3s;
}

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

.service-card p {
    color: var(--zinc-400);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(24, 24, 27, 0.3);
    border: 1px solid var(--zinc-800);
    border-radius: 0.75rem;
    transition: border-color 0.3s;
}

.stat-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.cyan {
    background: rgba(34, 211, 238, 0.1);
    color: var(--cyan);
}

.stat-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
}

.stat-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--zinc-400);
    font-size: 0.875rem;
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--zinc-400);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.about-features {
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    padding: 2rem;
}

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

.feature-item:not(:last-child) {
    border-bottom: 1px solid var(--zinc-800);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.cyan {
    background: rgba(34, 211, 238, 0.1);
    color: var(--cyan);
}

.feature-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
}

.feature-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple);
}

.feature-item h4 {
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--zinc-400);
    font-size: 0.875rem;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--zinc-950);
}

.instagram-box {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.instagram-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--purple), var(--pink), #f97316);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.instagram-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.instagram-box > p {
    color: var(--zinc-400);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hashtags span {
    padding: 0.5rem 1rem;
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid var(--zinc-700);
    border-radius: 9999px;
    color: var(--zinc-400);
    font-size: 0.875rem;
    transition: all 0.3s;
}

.hashtags span:hover {
    border-color: rgba(236, 72, 153, 0.5);
    color: var(--pink);
}

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

.contact-grid {
    display: grid;
    gap: 2rem;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--zinc-800);
    border-radius: 1rem;
    transition: border-color 0.3s;
}

.contact-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.cyan {
    background: rgba(34, 211, 238, 0.1);
    color: var(--cyan);
}

.contact-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
}

.contact-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple);
}

.contact-icon.instagram {
    background: linear-gradient(135deg, var(--purple), var(--pink), #f97316);
    color: var(--white);
}

.contact-card h4 {
    margin-bottom: 0.5rem;
}

.contact-card a {
    display: block;
    color: var(--zinc-300);
    font-size: 1.0625rem;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--cyan);
}

.contact-card p {
    color: var(--zinc-300);
    line-height: 1.5;
}

.directions-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink) !important;
    font-size: 0.9375rem !important;
    margin-top: 0.75rem;
}

.directions-link:hover {
    color: var(--pink-dark) !important;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    color: var(--zinc-300);
    font-size: 0.9375rem;
}

.hour-row .closed {
    color: #ef4444;
}

.instagram-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1), rgba(249, 115, 22, 0.1));
    border-color: rgba(236, 72, 153, 0.3) !important;
}

.instagram-card:hover {
    border-color: rgba(236, 72, 153, 0.5) !important;
}

.instagram-handle {
    color: var(--pink) !important;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    min-height: 400px;
    background: var(--zinc-900);
}

.map-container iframe {
    filter: grayscale(100%) opacity(0.8);
    transition: filter 0.5s;
}

.map-container:hover iframe {
    filter: grayscale(0%) opacity(1);
}

/* Footer */
.footer {
    background: var(--zinc-950);
    border-top: 1px solid var(--zinc-800);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--zinc-400);
    max-width: 350px;
    margin-bottom: 1.5rem;
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink);
    transition: color 0.3s;
}

.footer-instagram:hover {
    color: var(--pink-dark);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--zinc-400);
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--zinc-400);
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--cyan);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--zinc-400);
    padding: 0.5rem 0;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--zinc-800);
    text-align: center;
}

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

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--cyan);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
    transition: all 0.3s;
    z-index: 100;
}

.scroll-top:hover {
    background: var(--cyan-dark);
    transform: translateY(-4px);
}

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

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan-dark);
}

/* Selection */
::selection {
    background: rgba(34, 211, 238, 0.3);
    color: var(--white);
}

/* Media Queries */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-phone {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.5rem;
    }
}