/* ==========================================================================
   TRAVIS ALLEN ELVIS — MODERNIZED PREMIUM STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Changa:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Modern Design System & Design Tokens --- */
:root {
  --primary: #ff3019;
  --primary-glow: rgba(255, 48, 25, 0.4);
  --primary-dark: #cc1b07;
  
  --bg-dark-1: #0a0a0c;
  --bg-dark-2: #121216;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 48, 25, 0.5);
  
  --text-main: #f0f2f5;
  --text-muted: #9aa0a6;
  --text-gold: #ffd700;
  
  --font-heading: 'Changa', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --container-width: 1200px;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-dark-1);
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 48, 25, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 48, 25, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.5px;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #ff6652;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* --- Container & Layout Utils --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Headings --- */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 48, 25, 0.12);
  border: 1px solid rgba(255, 48, 25, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.divider-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin: 18px auto;
  border-radius: 2px;
}

.divider-line.left {
  margin: 18px 0;
}

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #d4220d 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px var(--primary-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 48, 25, 0.6);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

#site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Above Header Bar */
.above-header-bar {
  background-color: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(10px);
  color: var(--text-muted);
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.header-social span.label {
  color: #888888;
  font-weight: 500;
}

.header-social a {
  color: var(--text-main);
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.header-social a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.header-cta a {
  background: rgba(255, 48, 25, 0.15);
  border: 1px solid rgba(255, 48, 25, 0.4);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.header-cta a:hover {
  background: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

/* Primary Header */
.primary-header-bar {
  background: rgba(18, 18, 22, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.primary-header-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 12, 0.95);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  border-bottom-color: rgba(255, 48, 25, 0.3);
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

.mobile-header-phone {
  display: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-logo h3 {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.site-logo a { color: #ffffff; }
.site-logo span.red { color: var(--primary); }

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--primary);
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--primary);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-nav-drawer {
  display: none;
  background-color: rgba(18, 18, 22, 0.98);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--primary);
  padding: 24px;
}

.mobile-nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-drawer a {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.15rem;
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}

.mobile-nav-drawer a.active {
  background: rgba(255, 48, 25, 0.15);
  color: var(--primary);
  border-left: 3px solid var(--primary);
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.85) 60%, var(--bg-dark-1) 100%),
    radial-gradient(circle at center, transparent 30%, rgba(10,10,12,0.9) 90%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--text-gold);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  margin: 10px 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #d0d5dd;
  line-height: 1.8;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Stats Counter Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 25px 20px;
}

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

.stat-number {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary-glow);
}

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

/* ==========================================================================
   BIOGRAPHY SECTION
   ========================================================================== */

.bio-section {
  background-color: var(--bg-dark-2);
  padding: 120px 0;
  position: relative;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bio-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.bio-highlight-box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 24px;
  margin: 25px 0;
}

.bio-highlight-box p {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 500;
}

.bio-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.bio-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.bio-feature-item i {
  color: var(--primary);
}

.bio-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  border: 1px solid var(--glass-border);
}

.bio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bio-image-wrapper:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   VIDEOS SECTION
   ========================================================================== */

.videos-section {
  padding: 120px 0;
  background-color: var(--bg-dark-1);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.video-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 48, 25, 0.2);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.video-card .iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-body {
  padding: 24px;
}

.video-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.video-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   MUSIC & LISTEN NOW SECTION
   ========================================================================== */

.music-section {
  background-color: var(--bg-dark-2);
  padding: 120px 0;
}

.music-player-container {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.music-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.music-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
}

.music-wave-bars span {
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite alternate;
}

.music-wave-bars span:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.music-wave-bars span:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.music-wave-bars span:nth-child(3) { height: 40%; animation-delay: 0.5s; }
.music-wave-bars span:nth-child(4) { height: 80%; animation-delay: 0.2s; }

@keyframes wave {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

.audio-player-card audio {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.playlist-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.playlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.playlist-item:hover,
.playlist-item.active {
  background: rgba(255, 48, 25, 0.12);
  border-color: rgba(255, 48, 25, 0.4);
  transform: translateX(5px);
}

.playlist-item .song-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}

.playlist-item.active .song-title {
  color: var(--primary);
}

/* ==========================================================================
   WEDDINGS & EVENTS SECTION
   ========================================================================== */

.events-section {
  padding: 120px 0;
  background-color: var(--bg-dark-1);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.event-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(255, 48, 25, 0.15);
}

.event-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 48, 25, 0.15);
  border: 1px solid rgba(255, 48, 25, 0.3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.event-card h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.event-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ==========================================================================
   QUALITY REVIEWS SECTION
   ========================================================================== */

.reviews-section {
  background-color: var(--bg-dark-2);
  padding: 120px 0;
}

.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px 40px;
  margin: 15px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.testimonial-stars {
  color: var(--text-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-author .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 48, 25, 0.2);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.testimonial-author cite {
  font-style: normal;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  display: block;
}

.testimonial-author span.role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: #666666 !important;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  opacity: 1;
  width: 24px !important;
  border-radius: 10px !important;
}

/* ==========================================================================
   PHOTO GALLERY SECTION
   ========================================================================== */

.gallery-section {
  background-color: var(--bg-dark-1);
  padding: 120px 0;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}

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

.gallery-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--primary-glow);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 48, 25, 0.7) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
  color: #ffffff;
  font-size: 1.8rem;
  transition: opacity 0.3s ease;
}

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

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.9);
  border: 1px solid var(--glass-border);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 2.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--primary);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  background-color: var(--bg-dark-2);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.contact-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 48, 25, 0.15);
  border: 1px solid rgba(255, 48, 25, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.contact-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
}

.contact-card p, .contact-card a {
  color: var(--text-muted);
}

.contact-form-container {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

.form-row {
  display: flex;
  gap: 18px;
}

.form-group { flex: 1; }

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

#site-footer {
  background-color: var(--bg-dark-1);
  color: #ffffff;
  padding-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 70px;
}

.footer-col h2, .footer-col h6 {
  margin-bottom: 22px;
}

.footer-col h6 {
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-contact i {
  color: var(--primary);
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.footer-bottom {
  background-color: #060608;
  padding: 24px 0;
  text-align: center;
  color: #777777;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */

#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 8px 25px var(--primary-glow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  transform: translateY(-5px) scale(1.05);
  background: #e02812;
}

/* ==========================================================================
   ANIMATIONS (Scroll Entrance Effects)
   ========================================================================== */

.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-up { transform: translateY(40px); }
.animate-fade-down { transform: translateY(-40px); }
.animate-fade-left { transform: translateX(-40px); }
.animate-fade-right { transform: translateX(40px); }

.animate-on-scroll.animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 921px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.2rem; }
  
  .above-header-bar { font-size: 0.8rem; }
  
  .main-nav { display: none; }
  .mobile-header-phone { display: inline-flex; align-items: center; gap: 6px; }
  .primary-header-bar .site-logo { margin-left: auto; margin-right: 12px; }
  .primary-header-bar .site-logo h3 { font-size: 1.35rem; white-space: nowrap; }
  .mobile-nav-toggle { display: flex; }
  
  .hero-title { font-size: 3.8rem; }
  
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bio-grid,
  .videos-grid,
  .music-grid,
  .events-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 544px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.8rem; }
  
  .above-header-bar .container {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-stats-bar { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
}

/* Visitor Counter */
.footer-bottom .visitor-counter {
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  opacity: 0.75;
}
.footer-bottom .visitor-counter span {
  color: var(--ast-global-color-0);
  font-weight: 600;
}
