/* ========================================
   ARUNRAJAN PHOTOGRAPHY
   Clean • Elegant • Modern • Minimal
   ======================================== */

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

:root {
  --primary: #0a0a0a;
  --secondary: #1a1a1a;
  --accent: #d4af37;
  --accent-light: #f4d03f;
  --accent-hover: #ffd700;
  --text: #e5e5e5;
  --text-light: #a0a0a0;
  --bg: #0f0f0f;
  --bg-alt: #151515;
  --bg-card: #1a1a1a;
  --white: #ffffff;
  --shadow: rgba(0,0,0,0.3);
  --shadow-hover: rgba(212,175,55,0.2);
  --shadow-glow: rgba(212,175,55,0.4);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  background-attachment: fixed;
}

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

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}

.logo-brand img {
  height: 45px;
  width: auto;
  border-radius: 6px;
}

.brand-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0;
  text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.brand-text p {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0;
}

/* ========================================
   MENU TOGGLE
   ======================================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

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

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

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

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

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

.nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -5px 0 30px var(--shadow);
    border-left: 1px solid rgba(212,175,55,0.2);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    font-size: 18px;
  }
}

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

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
  animation: kenBurnsZoom 20s ease-in-out infinite alternate;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 20px;
  animation: heroContentFadeIn 1.5s ease-out;
}

@keyframes heroContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: heroTitleSlide 1.2s ease-out;
}

@keyframes heroTitleSlide {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: heroSubtitleSlide 1.5s ease-out 0.3s both;
}

@keyframes heroSubtitleSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.95;
    transform: translateY(0);
  }
}

/* ========================================
   QUOTE SECTION
   ======================================== */

.quote {
  padding: 120px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatQuoteGlow 8s ease-in-out infinite;
  top: -100px;
  left: -100px;
}

.quote::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatQuoteGlow 10s ease-in-out infinite reverse;
  bottom: -80px;
  right: -80px;
}

@keyframes floatQuoteGlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

.quote h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
  color: var(--text);
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: quoteTextGlow 4s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(212,175,55,0.2);
}

@keyframes quoteTextGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(212,175,55,0.2), 0 0 40px rgba(212,175,55,0.1);
  }
  50% {
    text-shadow: 0 0 30px rgba(212,175,55,0.3), 0 0 60px rgba(212,175,55,0.15);
  }
}

.quote h2::before {
  content: '"';
  font-size: 120px;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -60px;
  left: -40px;
  font-family: 'Playfair Display', serif;
  animation: quotePulse 3s ease-in-out infinite;
}

@keyframes quotePulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

/* ========================================
   FEATURED SECTION
   ======================================== */

.featured {
  padding: 100px 5%;
  background: var(--bg-alt);
}

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

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--accent);
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.section-title p {
  color: var(--text-light);
  font-size: 17px;
  letter-spacing: 0.05em;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.featured-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 10px 40px var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,0.1);
}

.featured-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px var(--shadow-glow);
  border-color: var(--accent);
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.featured-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

.featured-item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
  color: var(--white);
  transform: translateY(0);
  transition: var(--transition);
}

.featured-item:hover .text {
  background: linear-gradient(to top, rgba(10,10,10,0.98), rgba(212,175,55,0.1));
}

.featured-item .text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--accent);
}

.featured-item .text p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
  padding: 120px 5%;
  background: var(--bg-alt);
}

.services h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6.5vw, 64px);
  text-align: center;
  margin-bottom: 70px;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,0.1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px var(--shadow-glow);
  border-color: var(--accent);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.service-card:hover img {
  transform: scale(1.12);
  filter: brightness(1);
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  opacity: 1;
}

.service-card:hover .overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.98), rgba(212,175,55,0.1) 50%);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

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

.gallery-filter {
  position: sticky;
  top: 76px;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 25px 5%;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 4px 20px var(--shadow);
}

.filter-btn {
  background: var(--bg-alt);
  border: 2px solid rgba(212,175,55,0.3);
  color: var(--text);
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 5px 20px rgba(212,175,55,0.2);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 5px 25px rgba(212,175,55,0.4);
}

.gallery-container {
  padding: 80px 5%;
  background: var(--bg);
}

.gallery-category {
  margin-bottom: 100px;
  transition: var(--transition);
}

.gallery-category.hidden {
  display: none;
}

.gallery-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 46px);
  color: var(--accent);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  text-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.gallery-category h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.gallery {
  column-count: 4;
  column-gap: 25px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1400px) {
  .gallery { column-count: 3; }
}

@media (max-width: 1024px) {
  .gallery { column-count: 2; }
}

@media (max-width: 640px) {
  .gallery { column-count: 1; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow);
  transition: var(--transition);
  background: var(--bg-card);
  break-inside: avoid;
  margin-bottom: 25px;
  display: inline-block;
  width: 100%;
  border: 1px solid rgba(212,175,55,0.15);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-glow);
  border-color: var(--accent);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

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

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(212,175,55,0.4);
  border: 2px solid rgba(212,175,55,0.3);
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: var(--accent);
  color: var(--primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--accent-hover);
  box-shadow: 0 8px 30px rgba(212,175,55,0.6);
}

.lightbox-frame {
  display: contents;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
  min-height: 100vh;
  padding: 140px 8% 100px;
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--bg);
}

.about img {
  width: 45%;
  max-width: 550px;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 25px 80px var(--shadow-glow);
  border: 3px solid rgba(212,175,55,0.3);
  transition: var(--transition);
  animation: floatImage 6s ease-in-out infinite;
  filter: brightness(0.9) contrast(1.1);
}

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

.about img:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 100px var(--shadow-glow);
  border-color: var(--accent);
  filter: brightness(1) contrast(1.15);
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 60px);
  margin-bottom: 35px;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(212,175,55,0.2);
  letter-spacing: 0.02em;
}

.about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.about-content p:first-of-type {
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }
  
  .about img {
    width: 100%;
    max-width: 450px;
  }
}

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

.contact {
  min-height: 100vh;
  padding: 140px 8% 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  max-width: 800px;
  margin: 0 auto;
}

.contact h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 68px);
  margin-bottom: 60px;
  text-align: center;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(212,175,55,0.3);
  letter-spacing: 0.05em;
}

.contact form {
  display: flex;
  flex-direction: column;
  position: relative;
}

.contact input,
.contact select,
.contact textarea {
  width: 100%;
  background: var(--bg-card);
  border: 2px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  margin-bottom: 25px;
  color: var(--text);
  padding: 18px 24px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15), 0 8px 30px rgba(212,175,55,0.2);
  background: var(--bg-alt);
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: var(--text-light);
}

.contact select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
}

.contact textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.6;
}

button[type="submit"] {
  align-self: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  color: var(--primary);
  padding: 18px 60px;
  font-size: 15px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(212,175,55,0.5);
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-light) 100%);
}

/* ========================================
   SOCIAL CONNECT
   ======================================== */

.social-connect {
  padding: 100px 5%;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-connect::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

.social-connect h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--accent);
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-card);
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* YouTube - Red */
.social-link:nth-child(1) {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
  box-shadow: 0 5px 20px rgba(255,0,0,0.3);
}

.social-link:nth-child(1):hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(255,0,0,0.5);
}

/* Instagram - Gradient */
.social-link:nth-child(2) {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  box-shadow: 0 5px 20px rgba(253,29,29,0.3);
}

.social-link:nth-child(2):hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(253,29,29,0.5);
}

/* Facebook - Blue */
.social-link:nth-child(3) {
  background: linear-gradient(135deg, #1877F2 0%, #0D5DBD 100%);
  box-shadow: 0 5px 20px rgba(24,119,242,0.3);
}

.social-link:nth-child(3):hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(24,119,242,0.5);
}

.social-link:hover svg {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

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

footer {
  text-align: center;
  padding: 50px 5%;
  font-size: 14px;
  color: var(--text-light);
  background: var(--primary);
  line-height: 1.9;
  border-top: 1px solid rgba(212,175,55,0.2);
}

footer p {
  margin: 8px 0;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

footer a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* ========================================
   LOADING ANIMATION (MINIMAL)
   ======================================== */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  width: 90px;
  height: auto;
  margin-bottom: 25px;
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.loader-spinner {
  width: 35px;
  height: 35px;
  border: 3px solid rgba(212,175,55,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-top: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

@media (max-width: 768px) {
  header.site-header {
    padding: 12px 4%;
  }
  
  .logo-brand img {
    height: 38px;
  }
  
  .brand-text h1 {
    font-size: 16px;
  }
  
  .gallery-filter {
    top: 62px;
    padding: 15px 3%;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   UTILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

img {
  image-rendering: auto;
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-showcase {
  padding: 80px 5% 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.video-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.video-showcase h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 56px);
  color: var(--accent);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.video-showcase .section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* Video Carousel */
.video-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  --carousel-gap: 25px;
}

.video-carousel {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.video-carousel.grabbing {
  cursor: grabbing;
}

.video-carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0;
}

.video-card {
  flex: 0 0 calc(50% - (var(--carousel-gap) / 2));
  min-width: calc(50% - (var(--carousel-gap) / 2));
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 10px 40px var(--shadow);
  border: 1px solid rgba(212,175,55,0.1);
  transition: var(--transition);
}

.video-card.video-hidden {
  display: none;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-glow);
  border-color: var(--accent);
}

.video-card .video-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--accent);
  text-align: center;
  padding: 25px 20px 20px;
  margin: 0;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,175,55,0.05) 100%);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg-card);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-placeholder:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.video-play-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.video-play-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(212,175,55,0.6);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  margin-left: 4px;
}

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

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(212,175,55,0.3);
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* View More Button */
.video-view-more {
  text-align: center;
  margin-top: 60px;
}

.view-more-btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--primary);
  border: none;
  padding: 18px 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(212,175,55,0.5);
}

.view-more-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.view-more-btn.expanded svg {
  transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc(60% - (var(--carousel-gap) / 2));
    min-width: calc(60% - (var(--carousel-gap) / 2));
  }
  
  .video-carousel-wrapper {
    padding: 0 50px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .video-card {
    flex: 0 0 calc(85% - (var(--carousel-gap) / 2));
    min-width: calc(85% - (var(--carousel-gap) / 2));
  }
  
  .video-carousel-wrapper {
    padding: 0 45px;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  
  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
  
  .video-play-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 640px) {
  .video-card {
    flex: 0 0 calc(100% - (var(--carousel-gap) / 2));
    min-width: calc(100% - (var(--carousel-gap) / 2));
  }
  
  .video-showcase {
    padding: 60px 3% 80px;
  }
  
  .view-more-btn {
    padding: 15px 35px;
    font-size: 13px;
  }
}
  