﻿/* ========================================
   COMPREHENSIVE CSS FOR SUNRISE SOUND
   All styles extracted from HTML inline styles
   ======================================== */

/* â”€â”€ COLOR VARIABLES & LAYOUT â”€â”€ */
:root {
  --gold: #E8A020;
  --gold-light: #F5C842;
  --gold-dark: #B87A10;
  --deep: #0A0A0A;
  --dark: #111111;
  --mid: #1A1A1A;
  --panel: #1E1E1E;
  --text: #F0EDE8;
  --muted: #888880;
  --accent: #FF5722;
  --white: #FFFFFF;
  --gap: clamp(1rem, 3vw, 2rem);
  --max-w: 1200px;
}

/* â”€â”€ BASE RESET â”€â”€ */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep);
  color: var(--text);
  overflow-x: hidden;
}

/* â”€â”€ SCROLLBAR â”€â”€ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* â”€â”€ HEADER & NAVIGATION â”€â”€ */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(232, 160, 32, 0.1);
  backdrop-filter: blur(8px);
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
}

.logo-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep);
  font-weight: 900;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.2);
}

.logo-text { 
  display: flex; 
  flex-direction: column; 
  line-height: 1; 
}

.logo-text span:first-child {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.logo-text span:last-child { 
  font-size: 10px; 
  color: var(--muted); 
  letter-spacing: 3px; 
  text-transform: uppercase; 
}

nav { 
  display: flex; 
  gap: 32px; 
  align-items: center; 
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover { 
  color: var(--gold); 
}

.nav-book {
  background: var(--gold);
  color: var(--deep);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-book:hover { 
  background: var(--gold-light) !important; 
  transform: translateY(-1px); 
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.top-bar {
  background: linear-gradient(90deg, var(--deep) 0%, var(--mid) 50%, var(--deep) 100%);
  color: var(--text);
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(232, 160, 32, 0.15);
}

.top-bar span { 
  color: var(--gold); 
}

/* â”€â”€ TICKER â”€â”€ */
.ticker {
  background: rgba(232, 160, 32, 0.05);
  border-top: 1px solid rgba(232, 160, 32, 0.1);
  border-bottom: 1px solid rgba(232, 160, 32, 0.1);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* â”€â”€ HERO SECTION â”€â”€ */
.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.hero-slide-1 { 
  background: url('../images/w.jpeg') center/cover no-repeat;
}

.hero-slide-2 { 
  background: url('../images/Sunrise Sound Service.png') center/cover no-repeat;
}

.hero-slide-3 { 
  background: linear-gradient(135deg, #0F3A5C 0%, #1B263B 100%); 
}

.hero-slide.active { 
  opacity: 1; 
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.55) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(232, 160, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 160, 32, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.15), transparent);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 1;
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 160px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-title .gold { 
  color: var(--gold); 
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--deep);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 20px;
  right: 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  z-index: 5;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 2px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}

.scroll-indicator span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* â”€â”€ SECTION COMMON â”€â”€ */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  color: var(--gold);
  font-style: normal;
}

/* â”€â”€ ABOUT SECTION â”€â”€ */
.about {
  background-color: #0D1B2A;
  color: #ffffff;
  padding: 80px 20px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1B263B 0%, #0F3A5C 100%);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232, 160, 32, 0.15), 0 0 1px rgba(232, 160, 32, 0.3);
  border: 1px solid rgba(232, 160, 32, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232, 160, 32, 0.25), 0 0 1px rgba(232, 160, 32, 0.4);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-fallback {
  display: none;
}

.about-badge {
  background: #1B263B;
  color: #FFD700;
  padding: 16px;
  border-radius: 8px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.about-badge .num {
  font-size: 24px;
  font-weight: 700;
}

.about-badge .lbl {
  font-size: 14px;
  line-height: 1.4;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.feature-item h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

/* â”€â”€ SERVICES SECTION â”€â”€ */
.services {
  padding: 80px 5%;
  background: var(--deep);
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.1) 0%, rgba(232, 160, 32, 0.05) 100%);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.15) 0%, rgba(232, 160, 32, 0.1) 100%);
  border-color: rgba(232, 160, 32, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(232, 160, 32, 0.15);
}

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.3;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* â”€â”€ WHY CHOOSE SECTION â”€â”€ */
.why-section {
  background: linear-gradient(135deg, #0D1B2A 0%, #1B263B 100%);
  color: #ffffff;
  padding: 80px 5%;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 30px;
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(232, 160, 32, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(232, 160, 32, 0.2);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.card:hover .icon-box { 
  transform: scale(1.1) rotate(-4deg); 
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

/* â”€â”€ WORKS SECTION â”€â”€ */
.works {
  background-color: #ffffff;
  color: #000;
  padding: 80px 20px;
}

.works-header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.works-header > div:first-child {
  flex: 1;
}

.works-header .section-label {
  justify-content: flex-start;
}

.works-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.work-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 100%);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.work-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* â”€â”€ BOOKING SECTION â”€â”€ */
.booking {
  background: linear-gradient(135deg, #0D1B2A 0%, #1B263B 100%);
  color: #ffffff;
  padding: 80px 20px;
}

.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.booking-info p {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.7;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.booking-form input::placeholder,
.booking-form select::placeholder,
.booking-form textarea::placeholder {
  color: var(--muted);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

/* â”€â”€ TEAM SECTION â”€â”€ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.team-card {
  background-color: #F8F9FA;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 2px solid #E8E8E8;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
  border-color: #FFD700;
}

.team-avatar {
  background: linear-gradient(135deg, #FFD700, #FFC700);
  color: #000;
  font-weight: bold;
  font-size: 18px;
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.team-card h4 {
  margin: 8px 0 4px;
  color: #000;
  font-weight: 700;
}

.team-card span {
  font-size: 13px;
  color: #FFD700;
  font-weight: 600;
}

.team-card p {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

/* â”€â”€ TESTIMONIALS SECTION â”€â”€ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.test-card {
  background-color: #f0f4f8;
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 2px solid #e0e8f0;
  position: relative;
}

.test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-color: #FFD700;
}

.stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.test-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 14px;
}

.test-av {
  background: linear-gradient(135deg, #FFD700, #FFC700);
  color: #000;
  font-weight: bold;
  font-size: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.test-name {
  font-weight: 700;
  color: #FFD700;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.test-role {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.test-card p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

/* â”€â”€ BLOG SECTION â”€â”€ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.blog-card {
  background-color: #1E3A5F;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.blog-thumb {
  font-size: 32px;
  margin-bottom: 12px;
}

.blog-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.blog-link:hover {
  color: #fff;
}

.blog-card h3 {
  color: #fff;
  font-size: 18px;
  margin: 12px 0;
}

.blog-card p {
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.5;
}

/* â”€â”€ CONTACT SECTION â”€â”€ */
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
  background-color: #0A1F44;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-brand h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-col a {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #d1d5db;
  font-size: 13px;
}

.iso-badge {
  display: inline-block;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 6px;
  margin: 0 12px;
  font-size: 12px;
  font-weight: 600;
}

/* â”€â”€ NOTIFICATIONS â”€â”€ */
.notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #4CAF50;
  color: white;
  padding: 20px;
  border-radius: 8px;
  display: none;
  z-index: 2000;
  max-width: 400px;
}

.notification.show {
  display: block;
}

.notification h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.notification p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* â”€â”€ RESPONSIVE DESIGN â”€â”€ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-content {
    padding: 120px 5% 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-info {
    gap: 16px;
  }

  .booking-info h2 {
    font-size: 32px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .works-header {
    flex-direction: column;
    gap: 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  :root {
    --gap: 1rem;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-num {
    font-size: 24px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ ANIMATIONS â”€â”€ */
@keyframes slideInToast {
  from {
    transform: translateX(-400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutToast {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-400px);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(232,160,32,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,160,32,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
  }  
  .hero-orb {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: pulse 4s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.6} 50%{transform:translate(-50%,-50%) scale(1.1);opacity:1} }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    animation: fadeUp 1s ease both;
  }
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  .hero-badge {
    display: inline-block;
    border: 1px solid rgba(232,160,32,0.4);
    color: var(--gold); font-size: 11px; letter-spacing: 4px;
    text-transform: uppercase; padding: 7px 20px;
    margin-bottom: 28px;
    background: rgba(232,160,32,0.05);
    animation: fadeUp 1s 0.2s ease both;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: 4px;
    color: var(--text);
    animation: fadeUp 1s 0.3s ease both;
  }
  .hero-title .gold { color: var(--gold); }
  .hero-subtitle {
    font-size: 16px; color: var(--muted); margin: 24px auto;
    max-width: 520px; line-height: 1.7;
    animation: fadeUp 1s 0.4s ease both;
  }
  .hero-ctas { display: flex; gap: 16px; justify-content: center; animation: fadeUp 1s 0.5s ease both; }
  .btn-primary {
    background: var(--gold); color: var(--deep);
    padding: 16px 40px; font-weight: 700; font-size: 14px;
    text-decoration: none; border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(232,160,32,0.3);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,160,32,0.5); }
  .btn-outline {
    border: 1px solid rgba(232,160,32,0.5); color: var(--gold);
    padding: 16px 40px; font-weight: 500; font-size: 14px;
    text-decoration: none; border-radius: 2px;
    transition: all 0.3s; background: transparent;
  }
  .btn-outline:hover { background: rgba(232,160,32,0.1); border-color: var(--gold); }
  .hero-stats {
    position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 60px;
    animation: fadeUp 1s 0.7s ease both;
    z-index: 2;
  }
  .stat { text-align: center; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--gold); line-height: 1; }
  .stat-label { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
  .scroll-indicator {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--muted); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    z-index: 2; animation: bounce 2s infinite;
  }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }
  @keyframes fadeOut { from{opacity:1} to{opacity:0} }
  @keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes scaleIn { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }
  .scroll-line { width: 1px; height: 30px; background: linear-gradient(to bottom, var(--gold), transparent); }

  /* â”€â”€ SECTIONS â”€â”€ */
  section { padding: 100px 5%; }
  .section-label {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
  }
  .section-label::before { content: ''; width: 30px; height: 2px; background: var(--gold); }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1; color: var(--text); margin-bottom: 20px;
  }
  .section-title em { color: var(--gold); font-style: normal; }

  /* â”€â”€ ABOUT â”€â”€ */
  .about { background: var(--dark); }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
  .about-visual {
    position: relative;
  }
  .about-img-wrap {
    position: relative;
    border-radius: 4px; overflow: hidden;
    aspect-ratio: 4/5;
  }
  .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1510 0%, #2a1f0a 50%, #1a1510 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
  }
  .stage-icon { font-size: 80px; opacity: 0.5; }
  .about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold); color: var(--deep);
    padding: 24px; text-align: center;
    border-radius: 2px;
  }
  .about-badge .num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; }
  .about-badge .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
  .feature-item { border-left: 2px solid var(--gold); padding-left: 16px; }
  .feature-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
  .feature-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* â”€â”€ SERVICES â”€â”€ */
  .services { background: var(--deep); }
  .services-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
  .services-header .section-label { justify-content: center; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
  .service-card {
    background: var(--panel);
    padding: 48px 36px;
    position: relative; overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    border: 1px solid transparent;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold); transform: scaleX(0); transition: transform 0.4s;
    transform-origin: left;
  }
  .service-card:hover { background: #222; border-color: rgba(232,160,32,0.15); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { font-size: 40px; margin-bottom: 20px; }
  .service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
  .service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
  .service-num {
    position: absolute; top: 24px; right: 24px;
    font-family: 'Bebas Neue', sans-serif; font-size: 60px;
    color: rgba(232,160,32,0.06); line-height: 1;
  }

  /* â”€â”€ WORKS â”€â”€ */
  .works { background: var(--dark); }
  .works-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; }
  .works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; max-width: 1200px; margin: 0 auto; }
  .work-item {
    position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
    background: var(--panel);
  }
  .work-item-bg {
    width: 100%; height: 100%;
    transition: transform 0.6s;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px;
  }
  .work-item:hover .work-item-bg { transform: scale(1.05); }
  .work-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
    opacity: 0; transition: opacity 0.4s;
    display: flex; align-items: flex-end; padding: 28px;
  }
  .work-item:hover .work-overlay { opacity: 1; }
  .work-info h4 { font-size: 18px; font-weight: 700; }
  .work-info span { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

  /* â”€â”€ BOOKING FORM â”€â”€ */
  .booking {
    background: linear-gradient(135deg, var(--dark) 0%, #12100A 100%);
    position: relative; overflow: hidden;
  }
  .booking::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,160,32,0.06) 0%, transparent 70%);
  }
  .booking-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .booking-info p { color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
  .booking-highlights { display: flex; flex-direction: column; gap: 20px; }
  .bh-item { display: flex; align-items: center; gap: 16px; }
  .bh-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .bh-text { font-size: 14px; color: var(--muted); }
  .booking-form {
    background: var(--panel);
    border: 1px solid rgba(232,160,32,0.1);
    padding: 48px;
    border-radius: 4px;
  }
  .booking-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
  .booking-form p.sub { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text); padding: 14px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    border-radius: 2px; outline: none;
    transition: border-color 0.3s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(232,160,32,0.04);
  }
  .form-group select option { background: var(--panel); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .btn-submit {
    width: 100%; background: var(--gold); color: var(--deep);
    padding: 18px; font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(232,160,32,0.25);
  }
  .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,160,32,0.4); }

  /* â”€â”€ TEAM â”€â”€ */
  .team { background: var(--deep); }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
  .team-card {
    text-align: center; padding: 36px 24px;
    background: var(--panel); border-radius: 2px;
    border: 1px solid transparent;
    transition: all 0.3s;
  }
  .team-card:hover { border-color: rgba(232,160,32,0.2); transform: translateY(-4px); }
  .team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-family: 'Bebas Neue', sans-serif; color: var(--deep);
  }
  .team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
  .team-card span { font-size: 12px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

  /* â”€â”€ BLOG â”€â”€ */
  .blog { background: var(--dark); }
  .blog-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
  .blog-header .section-label { justify-content: center; }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
  .blog-card { background: var(--panel); border-radius: 2px; overflow: hidden; transition: transform 0.3s; cursor: pointer; }
  .blog-card:hover { transform: translateY(-4px); }
  .blog-thumb {
    aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; position: relative; overflow: hidden;
  }
  .blog-thumb-1 { background: linear-gradient(135deg, #1a1005, #2d1f08); }
  .blog-thumb-2 { background: linear-gradient(135deg, #05101a, #082030); }
  .blog-thumb-3 { background: linear-gradient(135deg, #1a0510, #2d0820); }
  .blog-body { padding: 28px; }
  .blog-date { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
  .blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
  .blog-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
  .blog-link { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; text-decoration: none; }
  .blog-link:hover { text-decoration: underline; }

  /* â”€â”€ TESTIMONIALS â”€â”€ */
  .testimonials { background: var(--deep); }
  .test-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
  .test-header .section-label { justify-content: center; }
  .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
  .test-card { background: var(--panel); padding: 36px; border-radius: 2px; position: relative; }
  .test-card::before { content: '"'; font-size: 80px; color: var(--gold); opacity: 0.15; position: absolute; top: 16px; left: 24px; font-family: serif; line-height: 1; }
  .stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
  .test-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
  .test-author { display: flex; align-items: center; gap: 12px; }
  .test-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--deep); font-size: 16px; }
  .test-name { font-size: 14px; font-weight: 700; }
  .test-role { font-size: 12px; color: var(--muted); }

  /* â”€â”€ CONTACT â”€â”€ */
  .contact { background: var(--dark); }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; }
  .contact-item { display: flex; gap: 20px; margin-bottom: 36px; align-items: flex-start; }
  .contact-icon { font-size: 28px; flex-shrink: 0; margin-top: 4px; }
  .contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
  .contact-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .contact-map {
    border: 1px solid rgba(232,160,32,0.1);
    border-radius: 4px; overflow: hidden; height: 320px; width: 100%;
  }
  .contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

  /* â”€â”€ FOOTER â”€â”€ */
  footer { background: var(--deep); border-top: 1px solid rgba(232,160,32,0.1); padding: 60px 5% 30px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
  .footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 16px 0 24px; }
  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(232,160,32,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; text-decoration: none; color: var(--muted);
    transition: all 0.3s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,160,32,0.1); }
  .footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
  .footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color 0.3s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
  .footer-bottom p { font-size: 12px; color: var(--muted); }
  .iso-badge { font-size: 12px; color: var(--gold); border: 1px solid rgba(232,160,32,0.3); padding: 6px 14px; border-radius: 2px; }

  /* â”€â”€ TICKER â”€â”€ */
  .ticker { background: var(--gold); overflow: hidden; padding: 12px 0; }
  .ticker-inner { display: flex; gap: 48px; animation: ticker 30s linear infinite; white-space: nowrap; }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--deep); letter-spacing: 3px; display: flex; align-items: center; gap: 20px; }
  .ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--deep); opacity: 0.4; }

  /* â”€â”€ NOTIFICATION â”€â”€ */
  .notification {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
    background: var(--panel); border: 1px solid var(--gold);
    border-radius: 4px; padding: 20px 28px;
    transform: translateX(200%); transition: transform 0.5s cubic-bezier(.175,.885,.32,1.275);
    max-width: 340px;
  }
  .notification.show { transform: translateX(0); }
  .notification h4 { font-size: 15px; margin-bottom: 6px; color: var(--gold); }
  .notification p { font-size: 13px; color: var(--muted); }

  /* â”€â”€ MOBILE â”€â”€ */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .hamburger span { width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }
  @media (max-width: 1024px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .about-inner, .booking-inner, .contact-inner { grid-template-columns: 1fr; }
    .services-grid, .blog-grid, .test-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .works-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 30px; }
  }
  @media (max-width: 640px) {
    .services-grid, .blog-grid, .test-grid, .team-grid { grid-template-columns: 1fr; }
    .works-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 20px; position: relative; bottom: auto; left: auto; transform: none; margin: 0 auto; padding-bottom: 20px; }
  }



/* ── FLOATING ACTION BUTTON ── */
.fab-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 14px;
  z-index: 1000;
}

.fab-main {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: var(--deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,160,32,0.5);
  transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
  position: relative;
  z-index: 2;
}

.fab-main:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(232,160,32,0.65);
}

.fab-wrapper.active .fab-main {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  box-shadow: 0 4px 20px rgba(231,76,60,0.55);
}

.fab-icon-plus,
.fab-icon-close {
  width: 22px;
  height: 22px;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fab-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.4);
}

.fab-wrapper.active .fab-icon-plus {
  opacity: 0;
  transform: rotate(90deg) scale(0.4);
}

.fab-wrapper.active .fab-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.fab-item {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  opacity: 0;
  transform: scale(0.4) translateY(-20px);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.2s ease;
  text-decoration: none;
  position: relative;
  pointer-events: none;
  overflow: visible;
}

.fab-item svg,
.fab-item img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

/* Tooltip */
.fab-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(10,10,10,0.92);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(232,160,32,0.25);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(232,160,32,0.25);
}

.fab-item:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Show children when active */
.fab-wrapper.active .fab-item {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* Staggered reveal */
.fab-wrapper.active .fab-item:nth-child(1) { transition-delay: 0s; }
.fab-wrapper.active .fab-item:nth-child(2) { transition-delay: 0.07s; }
.fab-wrapper.active .fab-item:nth-child(3) { transition-delay: 0.14s; }
.fab-wrapper.active .fab-item:nth-child(4) { transition-delay: 0.21s; }

.fab-item:hover {
  transform: scale(1.15) translateY(0) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.5) !important;
}
