:root {
  --bg-color: #0d0d12;
  --surface-color: #1a1a24;
  --primary-color: #00f0ff;
  --secondary-color: #ff0055;
  --text-main: #f0f0f5;
  --text-muted: #a0a0b0;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

/* Glassmorphism utility */
.glass {
  background: rgba(26, 26, 36, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Glow utility */
.glow-primary {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}
.glow-primary:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

/* Base button */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0077ff);
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

.title-section {
  text-align: center;
  margin-bottom: 60px;
}
.title-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 30px 0;
}

header.scrolled {
  padding: 15px 0;
  background: rgba(13, 13, 18, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
}

.logo span {
  color: var(--primary-color);
}

.cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.phone-link {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.15) 0%, transparent 40%), radial-gradient(circle at 20% 80%, rgba(255, 0, 85, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.hero-title .outline {
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gallery */
.gallery-section {
  background: var(--surface-color);
}

.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 5px 10px 5px;
}

.filter-btn.active {
  background: var(--primary-color);
  color: #000;
  border: 1px solid var(--primary-color);
}

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

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--surface-color);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .card-img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.gallery-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.card-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.card-category {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  z-index: 2;
  border-radius: 50%;
}

.gallery-card:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: #000;
}

.slider-btn.left { left: 10px; }
.slider-btn.right { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 85px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover .slider-dots {
  opacity: 1;
}

.dot {
  height: 6px;
  width: 6px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 2fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
  margin-bottom: 30px;
}

.info-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.info-value {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.calendly-wrapper {
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background: #08080c;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-desc {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 40px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
}
