:root {
  --primary-bg: #050507;
  --secondary-bg: #0b0b10;
  --accent-color: #d82713;
  --accent-glow: #ff5533;
  --text-primary: #f5f5f5;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --border-color: #1a1a1f;
  --gradient-primary: linear-gradient(135deg, #d82713, #6a0017);
  --glow-primary: 0 0 20px rgba(216, 39, 19, 0.4), 0 0 40px rgba(216, 39, 19, 0.2);
  --glow-accent: 0 0 15px rgba(255, 85, 51, 0.3);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111111 0, #050507 55%, #000000 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 0, 60, 0.35);
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
  max-height: 50px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.instagram-btn {
    background: var(--gradient-primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
}

.instagram-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 25px rgba(216, 39, 19, 0.6), var(--glow-primary);
}

.menu-toggle {
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: #666;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--accent-color);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--accent-color);
}

/* Sliding Menu */
.sliding-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    transition: right 0.4s ease;
}

.sliding-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: var(--secondary-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.menu-nav ul {
    list-style: none;
    margin-bottom: 50px;
}

.menu-nav li {
    margin: 25px 0;
}

.menu-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(216, 39, 19, 0.5);
}

.menu-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
    text-shadow: var(--glow-accent);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease forwards;
}

.hero-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-line:nth-child(3) {
    animation-delay: 0.6s;
}

.sliding-text {
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

.sliding-word {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.sliding-word.active {
    opacity: 1;
    transform: translateY(0);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(216, 39, 19, 0.3));
}

@keyframes slideUpFade {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
    color: var(--text-secondary);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-circle {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-circle:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: var(--glow-accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--secondary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 5px;
    text-shadow: var(--glow-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 60% 47%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(216, 39, 19, 0.2), 0 0 30px rgba(216, 39, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(216, 39, 19, 0.3), 0 0 40px rgba(216, 39, 19, 0.15);
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: var(--primary-bg);
}

.brands .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    will-change: transform;
}

.brand-item {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    transition: all 0.3s ease;
}

.brand-item img {
    max-width: 120px;
    height: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(216, 39, 19, 0.5));
}

/* Session/Gallery Page Styles */
.session-page {
  max-width: 1440px;
  margin: 100px auto 60px;
  padding: 0 20px 40px;
}

.session-shell {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 0, 60, 0.16);
  background:
    radial-gradient(circle at 10% 0, rgba(255, 0, 60, 0.07), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(255, 0, 60, 0.1), transparent 60%),
    linear-gradient(135deg, #050507 0, #050507 30%, #020105 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 18px 45px rgba(0, 0, 0, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 0;
  overflow: hidden;
}

.gallery-panel {
  position: relative;
  grid-column: 1 / 2;
  padding: 24px;
  border-right: 1px solid #1a1a1f;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: radial-gradient(circle at top left, #141018 0, #050507 60%);
  overflow: hidden;
}

.video-panel {
  position: relative;
  grid-column: 2 / 3;
  padding: 24px 22px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: radial-gradient(circle at top right, #150b10 0, #020104 62%);
}

.gallery-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 0, 60, 0.35);
  padding-bottom: 10px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tagline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 12px rgba(255, 0, 60, 0.8);
}

.title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-primary);
  white-space: nowrap;
}

.title span {
  color: var(--accent-color);
}

.gallery-meta {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 11px;
  color: var(--text-muted);
}

.meta-label {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.meta-pill {
  padding: 2px 8px 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 60, 0.4);
  background: rgba(0, 0, 0, 0.55);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}

.thumb-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-top: 4px;
  flex: 1;
  align-content: start;
}

.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 11px;
  background: #08080b;
  border: 1px solid rgba(255, 255, 255, 0.02);
  cursor: pointer;
  isolation: isolate;
  transform-origin: center;
  transition: transform 140ms ease-out, box-shadow 140ms ease-out, border-color 140ms ease-out, filter 120ms ease-out;
}

.thumb:nth-child(3n) {
  transform: translateY(3px);
}

.thumb:nth-child(4n) {
  transform: translateY(-3px);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06) brightness(0.99);
  transition: transform 220ms ease-out, filter 150ms ease-out;
}

.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 0, 60, 0.45), transparent 52%), radial-gradient(circle at 100% 100%, rgba(255, 0, 60, 0.4), transparent 48%);
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 160ms ease-out;
  pointer-events: none;
}

.thumb::after {
  content: attr(data-index);
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 6px 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 0, 60, 0.7);
  color: var(--accent-color);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.85);
}

.thumb:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 0, 60, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 0, 60, 0.4), 0 12px 26px rgba(0, 0, 0, 0.9);
  z-index: 2;
}

.thumb:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.1) brightness(1.02);
}

.thumb:hover::before {
  opacity: 1;
}

.mute-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.mute-btn:hover {
  background: rgba(216, 39, 19, 0.9);
  transform: translateY(-1px);
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 0, 60, 0.65);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.9), 0 18px 38px rgba(0, 0, 0, 0.95), 0 0 30px rgba(216, 39, 19, 0.15);
  isolation: isolate;
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 0, 60, 0.24), transparent 55%), radial-gradient(circle at 100% 100%, rgba(255, 0, 60, 0.38), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.video-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08) brightness(0.98);
}

.video-overlay {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0, rgba(0, 0, 0, 0.4), transparent 65%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

.video-top-label {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 0, 60, 0.6);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.video-top-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-color);
  box-shadow: 0 0 14px rgba(255, 0, 60, 0.85);
}

.video-bottom-bar {
  position: absolute;
  inset-inline: 10px;
  bottom: 8px;
  border-radius: 999px;
  padding: 5px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 3;
}

.video-bottom-bar span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fake-wave {
  position: relative;
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(40, 40, 50, 0.7), rgba(255, 0, 60, 0.9), rgba(40, 40, 50, 0.7));
  overflow: hidden;
}

.fake-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, transparent 0, transparent 14%, rgba(0, 0, 0, 0.65) 16%, transparent 18%, transparent 36%, rgba(0, 0, 0, 0.7) 38%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.7) 62%, transparent 64%, transparent 100%);
  background-size: 60px 100%;
  mix-blend-mode: soft-light;
  animation: wave 1.8s linear infinite;
  opacity: 0.9;
}

@keyframes wave {
  from { transform: translateX(-60px); }
  to { transform: translateX(60px); }
}

.video-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 60, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #ff003c, #6a0017);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.9), 0 0 16px rgba(255, 0, 60, 0.85);
  cursor: pointer;
}

.play-btn {
  line-height: 1;
  padding: 0;
  margin: 0;
}

.video-cta-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.85;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.info-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-primary);
}

.info-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 2px 7px 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 60, 0.6);
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent-color);
}

.info-copy {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.spec {
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(10, 10, 14, 0.95), rgba(12, 6, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 7px 9px 8px;
}

.spec-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.spec-value {
  font-size: 12px;
  color: var(--text-primary);
  margin-top: 2px;
}

.spec-accent {
  color: var(--accent-color);
}

.footer-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 10px;
}

.small-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.small-dots span {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 0, 60, 0.8);
  box-shadow: 0 0 8px rgba(255, 0, 60, 0.8);
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--secondary-bg);
}

.gallery .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    background: var(--primary-bg);
    border: 1px solid rgba(255, 0, 60, 0.2);
    box-shadow: 0 0 20px rgba(216, 39, 19, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.gallery-item:hover {
    border-color: rgba(255, 0, 60, 0.4);
    box-shadow: 0 0 35px rgba(216, 39, 19, 0.25);
    transform: translateY(-5px);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.08);
}

.play-button {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px rgba(216, 39, 19, 0.6);
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: white;
}

.gallery-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Services Section - Modern Grid Layout */
.services {
    padding: 120px 0;
    background: var(--primary-bg);
}

.services .section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(11, 11, 16, 0.8), rgba(15, 8, 12, 0.6));
    border: 1px solid rgba(255, 85, 51, 0.25);
    padding: 45px 35px;
    border-radius: 18px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 85, 51, 0.4), transparent);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: radial-gradient(circle at top left, rgba(255, 85, 51, 0.15), transparent 70%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 85, 51, 0.5);
    background: linear-gradient(135deg, rgba(11, 11, 16, 1), rgba(20, 10, 15, 0.8));
    box-shadow: 0 20px 50px rgba(216, 39, 19, 0.2), 0 0 30px rgba(216, 39, 19, 0.12), inset 0 1px 0 rgba(255, 85, 51, 0.2);
}

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

.service-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 0, 34, 0.575);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Call to Action Section */
.cta {
    padding: 120px 0;
    background: var(--secondary-bg);
    text-align: center;
}

.cta-content .section-title {
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(216, 39, 19, 0.5), var(--glow-primary);
}

.cta-button.secondary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cta-button.secondary:hover {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--glow-primary);
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-shadow: var(--glow-accent);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive tweaks for session layout */
@media (max-width: 980px) {
  .session-page {
    margin-top: 90px;
  }

  .session-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-panel {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid #1a1a1f;
  }

  .video-panel {
    grid-column: 1 / -1;
    padding-inline: 20px;
  }
}

@media (max-width: 720px) {
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .gallery-meta {
    flex-wrap: wrap;
  }

  .thumb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-page {
    margin: 80px auto 40px;
    padding: 0 12px 32px;
  }

  .session-shell {
    border-radius: 12px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
        gap: 20px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .logo-img {
        height: 35px;
    }
}

.fs-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fs-viewer.fs-open {
  display: flex;
  opacity: 1;
}

.fs-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.fs-inner video {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  animation: fadeInScale 0.3s ease;
}

.fs-inner img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  animation: fadeInScale 0.3s ease;
}

.fs-close {
  position: fixed;
  top: 30px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3001;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.fs-close:hover {
  background: rgba(216, 39, 19, 0.9);
  border-color: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(216, 39, 19, 0.6);
}

.fs-close:active {
  transform: scale(0.95);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.video-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.play-btn,
.mute-btn,
.fs-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.play-btn:hover,
.mute-btn:hover,
.fs-btn:hover {
  background: rgba(216, 39, 19, 0.85);
  border-color: var(--accent-color);
  transform: scale(1.12);
  box-shadow: 0 0 15px rgba(216, 39, 19, 0.6);
}

.play-btn:active,
.mute-btn:active,
.fs-btn:active {
  transform: scale(0.95);
}

video:-webkit-full-screen {
  width: 100%;
  height: 100%;
}

video:-moz-full-screen {
  width: 100%;
  height: 100%;
}

video:fullscreen {
  width: 100%;
  height: 100%;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .fs-close {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 28px;
  }

  .play-btn,
  .mute-btn,
  .fs-btn {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .fs-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .play-btn,
  .mute-btn,
  .fs-btn {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}