:root {
  --bg: #0d0d0d;
  --text: #f5f5f5;
  --gold: linear-gradient(135deg, #dcb66c 0%, #FFC700 25%, #dcb66c 50%, #FFF3B0 75%, #FFD700 100%);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --card-bg: #1a1a1a;
  --border-gold: linear-gradient(90deg, #FFD700, #dcb66c, #FFD700);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: rgba(0,0,0,0.85);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #333;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 100px;
  width: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #dcb66c;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
}

/* Luxury Hero Section - Premium */

/* Custom Background Styles */
.luxury-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.luxury-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.luxury-hero:hover .luxury-bg-image {
  transform: scale(1.05);
}

/* Update existing .luxury-hero to remove background-color */
.luxury-hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  /* Remove background-color: #000; */
}

/* Update z-index values to accommodate new background */
#luxuryHeroCanvas {
  z-index: 2; /* Changed from 1 */
}

.luxury-hero-overlay {
  z-index: 3; /* Changed from 2 */
}

.luxury-particles {
  z-index: 4; /* Changed from 3 */
}

.luxury-container {
  z-index: 5; /* Changed from 4 */
}



#luxuryHeroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}

.luxury-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.luxury-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.luxury-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 4;
}

.luxury-hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: luxuryFadeInUp 1s 0.5s forwards;
}

.luxury-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.luxury-title-line {
  display: block;
}

.luxury-gold-text {
  background: linear-gradient(90deg, #FFC700 0%, #F5D680 50%, #FFC700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: luxuryShine 3s linear infinite;
}

.luxury-hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 600px;
}

.luxury-cta-container {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.luxury-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: linear-gradient(90deg, #FFC700 0%, #F5D680 50%, #FFC700 100%);
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.luxury-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFC700 0%, #D4AF37 50%, #FFC700 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.luxury-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.luxury-cta-button:hover::before {
  opacity: 1;
}

.luxury-cta-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.luxury-cta-button:hover .luxury-cta-icon {
  transform: translateX(5px);
}

.luxury-secondary-button {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.luxury-secondary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.luxury-secondary-button:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: #D4AF37;
}

.luxury-secondary-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.luxury-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  animation: luxuryBounce 2s infinite;
}

.luxury-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #FFC700, transparent);
  margin-bottom: 10px;
}

/* Animations */
@keyframes luxuryFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxuryShine {
  to {
    background-position: 200% center;
  }
}

@keyframes luxuryBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .luxury-hero-title {
    font-size: 4rem;
  }
  
  .luxury-hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .luxury-hero {
    min-height: 500px;
  }
  
  .luxury-container {
    padding: 0 30px;
  }
  
  .luxury-hero-title {
    font-size: 3rem;
  }
  
  .luxury-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .luxury-cta-container {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  
  .luxury-cta-button, .luxury-secondary-button {
    padding: 15px 30px;
    font-size: 1rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .luxury-hero {
    min-height: 450px;
    height: 80vh;
  }
  
  .luxury-container {
    padding: 0 20px;
  }
  
  .luxury-hero-title {
    font-size: 2.5rem;
  }
  
  .luxury-hero-subtitle {
    font-size: 1rem;
  }
  
  .luxury-scroll-indicator {
    bottom: 20px;
  }
  
  .luxury-scroll-line {
    height: 40px;
  }
}

/* Sections */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-serif);
  background: var(--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 4rem 0 2rem;
}

.services .grid,
.projects .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #333;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #dcb66c;
}

.service-description {
  display: none;
}

.service-title {
  cursor: pointer;
  transition: color 0.3s;
}

.service-title:hover {
  color: #dcb66c;
}



/* Contact Form */
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #1f1f1f;
  color: var(--text);
}

button[type="submit"] {
  background: var(--gold);
  color: #000;
  font-weight: bold;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }

  .nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: #111;
    padding: 1rem 0;
  }

  .nav.open ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  #heroCanvas {
    height: 100vh !important;
  }
}



/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loader */
#loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-size: 4rem;
  font-family: var(--font-serif);
  background: var(--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
}

.loader-text {
  color: var(--text);
  margin-top: 1rem;
}

/* seperator */
/* Add to your CSS */
.luxury-section {
  position: relative;
  padding-bottom: 3rem; /* Adjust as needed */
}

.luxury-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, 
              transparent, 
              rgba(220, 182, 108, 0.3), 
              #ffffff, 
              rgba(220, 182, 108, 0.3), 
              transparent);
  opacity: 0.7;
}

/* Optional animation */
.luxury-section.animated::after {
  background: linear-gradient(90deg, 
              transparent, 
              #ffffff, 
              transparent);
  background-size: 200% 100%;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

/* Luxury Projects Section */
.luxury-projects {
  padding: 0.5rem 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.luxury-projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMjAsMTgyLDEwOCwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
  opacity: 0.3;
  z-index: 0;
}

.luxury-projects .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFD700, #f5ac19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span {
  -webkit-text-fill-color: #fff;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1400px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.5s ease;
  width: 100%;
}

.project-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.view-btn {
  color: #000;
  background: #FFD700;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #fff;
}

.project-info {
  padding: 1.5rem;
  background: #1a1a1a;
}

.project-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.project-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  color: #FFD700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-link {
  display: inline-block;
  margin-top: 3rem;
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #FFD700;
  transition: width 0.3s ease;
}

.cta-link:hover {
  letter-spacing: 1.5px;
}

.cta-link:hover::after {
  width: 100%;
}

.cta-link span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.cta-link:hover span {
  transform: translateX(5px);
}

.view-all {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-image {
    height: 300px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.3s; }
.project-card:nth-child(3) { animation-delay: 0.5s; }
.project-card:nth-child(4) { animation-delay: 0.7s; }

/* contact section */
/* ===== RK Contact Section ===== */
.rk-contact-section {
  padding: 3rem 2rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.rk-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.rk-contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.rk-contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rk-contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rk-contact-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.rk-contact-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #D4AF37;
}

.rk-contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0 1rem;
}

.rk-contact-desc {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.rk-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.rk-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rk-info-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.rk-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rk-info-content h3 {
  font-size: 1.3rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.rk-info-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

.rk-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rk-form-group {
  position: relative;
}

.rk-form-group input,
.rk-form-group textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.rk-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.rk-form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  pointer-events: none;
}

.rk-form-group input:focus,
.rk-form-group textarea:focus {
  outline: none;
}

.rk-form-group input:focus ~ label,
.rk-form-group input:valid ~ label,
.rk-form-group textarea:focus ~ label,
.rk-form-group textarea:valid ~ label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: #FFD700;
}

.rk-input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #D4AF37;
  transition: width 0.4s ease;
}

.rk-form-group input:focus ~ .rk-input-underline,
.rk-form-group textarea:focus ~ .rk-input-underline {
  width: 100%;
}

.rk-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.rk-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.rk-submit-btn i {
  transition: transform 0.3s ease;
}

.rk-submit-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .rk-contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .rk-contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .rk-info-card {
    flex-basis: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .rk-contact-section {
    padding: 4rem 1.5rem;
  }
  
  .rk-info-card {
    flex-basis: 100%;
  }
}

@media (max-width: 480px) {
  .rk-contact-subtitle {
    font-size: 0.9rem;
  }
  
  .rk-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .rk-info-content h3 {
    font-size: 1.1rem;
  }
}


/* RK Luxury Gallery Collage */
.rk-gallery-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.rk-gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.rk-gallery-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.rk-gallery-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #D4AF37;
}

.rk-gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0 1rem;
}

.rk-gallery-description {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-size: 1.1rem;
}

.rk-collage-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.rk-collage-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, minmax(100px, 12vw));
  gap: 1rem;
}

.rk-collage-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: rk-fadeUp 0.8s forwards;
}

.rk-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.rk-collage-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  z-index: 2;
}

.rk-collage-item:hover img {
  transform: scale(1.05);
}

/* Desktop Collage Layout */
.rk-featured-item {
  grid-column: 1 / span 7;
  grid-row: 1 / span 4;
  animation-delay: 0.2s;
}

.rk-secondary-item {
  grid-column: 8 / span 5;
  grid-row: 1 / span 2;
  animation-delay: 0.4s;
}

.rk-tertiary-item {
  grid-column: 8 / span 5;
  grid-row: 3 / span 2;
  animation-delay: 0.6s;
}

.rk-quaternary-item {
  grid-column: 3 / span 7;
  grid-row: 5 / span 2;
  animation-delay: 0.8s;
}

@keyframes rk-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery CTA Button */
.rk-gallery-cta {
  text-align: center;
  margin-top: 4rem;
}

.rk-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.rk-gallery-btn svg {
  transition: transform 0.4s ease;
}

.rk-gallery-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.rk-gallery-btn:hover svg {
  transform: translateY(3px);
}

.rk-gallery-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: all 0.6s ease;
}

.rk-gallery-btn:hover::before {
  left: 100%;
}

/* Tablet Layout */
@media (max-width: 1024px) {
  .rk-collage-grid {
    grid-template-rows: repeat(6, minmax(100px, 15vw));
  }
  
  .rk-featured-item {
    grid-column: 1 / span 8;
    grid-row: 1 / span 3;
  }
  
  .rk-secondary-item {
    grid-column: 9 / span 4;
    grid-row: 1 / span 2;
  }
  
  .rk-tertiary-item {
    grid-column: 9 / span 4;
    grid-row: 3 / span 2;
  }
  
  .rk-quaternary-item {
    grid-column: 3 / span 6;
    grid-row: 5 / span 2;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  .rk-gallery-section {
    padding: 4rem 1.5rem;
  }
  
  .rk-collage-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .rk-collage-item {
    aspect-ratio: 4/5;
    height: auto;
    animation: rk-fadeUp 0.8s forwards;
    animation-delay: calc(var(--i) * 0.1s);
  }
  
  .rk-gallery-btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}

/* Gold Overlay Effect */
.rk-collage-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  pointer-events: none;
}