:root {
  --bg-color: #FFFFFF;        
  --accent-gold: #D4AF37;     
  --dark-grey: #222222;       
  --card-bg: #F9F9F9;         
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

@keyframes slideDownTopBar {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-grey);
  color: var(--bg-color);
  padding: 18px 20px; 
  width: 100%;
  border-bottom: 2px solid var(--accent-gold);
  animation: slideDownTopBar 0.8s ease forwards;
}

.top-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.top-bar-item i {
  color: var(--accent-gold);
  font-size: 16px;
  transition: filter 0.3s ease;
}

.top-bar-item:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.top-bar-item:hover i {
  filter: drop-shadow(0 0 8px var(--accent-gold));
}

.clicked-up {
  transform: translateY(-5px) !important;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.9) !important;
}

.clicked-up i {
  filter: drop-shadow(0 0 10px var(--accent-gold)) !important;
}




/* --- Navbar  */
.navbar-header {
  background-color: var(--bg-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  animation: zoomInFromBack 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

@keyframes zoomInFromBack {
  0% { 
    transform: scale(0.9) translateY(-20px); 
    opacity: 0; 
    filter: blur(5px);
  }
  100% { 
    transform: scale(1) translateY(0); 
    opacity: 1; 
    filter: blur(0);
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
  flex-wrap: nowrap !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: visible; 
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img.logo-img {
    height: 45px; 
    width: auto;
    object-fit: contain;
    display: block;
    transform: scale(2.6); 
    transform-origin: left center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  white-space: nowrap !important;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px; 
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-gold);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); 
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px; 
  flex-shrink: 0;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 8px 14px;
  position: relative !important;
  width: 170px !important;
  transition: all 0.3s ease;
}

.search-box:hover, 
.search-box:focus-within, 
.search-box.active {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6) !important;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 120px !important;
  color: var(--text-color);
}

.search-box i {
  cursor: pointer;
  font-size: 15px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.search-box i:hover {
  color: var(--accent-gold);
}

.search-results-dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  width: 100% !important;
  min-width: 180px !important;
  background-color: var(--bg-color, #ffffff) !important;
  border: 1px solid var(--accent-gold, #d4af37) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  display: none !important;
  z-index: 99999 !important;
  padding: 6px 0 !important;
}

.search-results-dropdown.active {
  display: block !important;
}

.search-dropdown-item {
  display: block !important;
  padding: 10px 15px !important;
  color: var(--text-color, #333333) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover {
  background-color: rgba(212, 175, 55, 0.15) !important;
  color: var(--accent-gold) !important;
}

.nav-icon-link {
  position: relative;
  font-size: 20px;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.nav-icon-link:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6)); /* Icons par glow */
}

.nav-icon-link .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--accent-gold);
  color: var(--bg-color);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50%;
}

.auth-btn {
  margin-left: 10px; 
  background-color: var(--accent-gold);
  color: var(--bg-color);
  padding: 9px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border: 2px solid var(--accent-gold); 
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.auth-btn:hover {
  transform: translateY(-2px);
  background-color: transparent; 
  color: var(--accent-gold); 
  border-color: var(--accent-gold); 
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.7), 0 4px 15px rgba(212, 175, 55, 0.4); 
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
  margin-left: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

  .nav-links.mobile-active {
    display: flex !important;
  }

  .hamburger {
    display: block;
  }
}







/* about us  */
.about-hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    background-image: url(images/about-hero.avif);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    opacity: 0;
    transform: scale(0.92);
    filter: blur(10px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-hero-section.in-view {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 12, 10, 0.92) 0%, rgba(13, 12, 10, 0.65) 100%);
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.about-anim-word {
    display: inline-block;
    opacity: 0;
    transform: perspective(1000px) translateY(40px) rotateX(-15deg);
    filter: blur(8px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(0.15s + (0.1s * var(--i)));
}

.about-hero-section.in-view .about-anim-word {
    opacity: 1;
    transform: perspective(1000px) translateY(0) rotateX(0deg);
    filter: blur(0);
}

.about-subtitle {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #b8860b;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.8);
}

.about-title {
    font-size: 52px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.9), 0 0 30px rgba(184, 134, 11, 0.6);
}

.about-tagline {
    font-size: 18px;
    color: #dedede;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.about-underline {
    width: 0px;
    height: 3px;
    background: #b8860b;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.9);
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
    margin: 0 auto;
}

.about-hero-section.in-view .about-underline {
    width: 90px;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
    .about-hero-section {
        height: 70vh;
        min-height: 420px;
    }
    .about-title {
        font-size: 34px !important;
    }
    .about-tagline {
        font-size: 14.5px;
    }
}



/*  BRAND VISION, MISSION */
.vision-mission-section {
    padding: 110px 20px;
    background-color: #0d0c0a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #b8860b;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 0 12px rgba(184, 134, 11, 0.6);
}

.vision-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.5), 0 5px 25px rgba(0, 0, 0, 0.8);
}

.section-gold-line {
    width: 70px;
    height: 3px;
    background: #b8860b;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(184, 134, 11, 0.8);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 134, 11, 0.2);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(5px);
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: #b8860b;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(184, 134, 11, 0.25);
}

.vision-icon-box {
    width: 75px;
    height: 75px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.vision-icon-box i {
    font-size: 30px;
    color: #b8860b;
    transition: transform 0.4s ease, color 0.4s ease;
}

.vision-card:hover .vision-icon-box {
    background: #b8860b;
    transform: scale(1.1) rotate(5deg);
}

.vision-card:hover .vision-icon-box i {
    color: #0d0c0a;
}

.vision-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.vision-card p {
    font-size: 15.5px;
    color: #cccccc;
    line-height: 1.75;
}

.vision-manifesto {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 45px 50px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(8px);
    
    transform: perspective(1000px) translateY(0) rotateX(0deg);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.5s ease, 
                background 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.vision-manifesto:hover {
    transform: perspective(1000px) translateY(-12px) rotateX(4deg);
    border-color: #b8860b;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(184, 134, 11, 0.35);
}

.manifesto-quote-icon {
    font-size: 34px;
    color: #b8860b;
    margin-bottom: 18px;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
    transition: transform 0.4s ease;
}

.vision-manifesto:hover .manifesto-quote-icon {
    transform: scale(1.15) translateY(-3px);
}

.manifesto-text {
    font-size: 18.5px;
    color: #dedede;
    font-style: italic;
    line-height: 1.75;
    max-width: 850px;
    margin: 0 auto 18px auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.manifesto-author {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b8860b;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

.vision-anim-item {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.9s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: var(--delay, 0s);
}

.vision-anim-item.vision-in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Mobile Responsive Optimization */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 70px 15px;
    }
    .vision-header {
        margin-bottom: 40px;
    }
    .vision-header h2 {
        font-size: 32px;
    }
    .vision-card {
        padding: 35px 22px;
    }
    .vision-grid {
        gap: 25px;
        margin-bottom: 35px;
    }
    .vision-manifesto {
        padding: 30px 20px;
    }
    .manifesto-text {
        font-size: 15px;
    }
}



/* JOURNEY TIMELINE SECTION */
.legacy-timeline-section {
    padding: 120px 20px;
    background: #ffffff; 
    color: #111111;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.timeline-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
}

.glow-1 {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.12); 
    top: 10%;
    left: -5%;
    animation: floatGlow1 8s ease-in-out infinite alternate;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.04);
    bottom: 5%;
    right: -5%;
    animation: floatGlow2 10s ease-in-out infinite alternate;
}

@keyframes floatGlow1 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}

@keyframes floatGlow2 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.15); }
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-header {
    text-align: center;
    margin-bottom: 75px;
}

.timeline-header .section-subtitle {
    color: #b8860b;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.timeline-header h2 {
    font-size: 44px !important; 
    color: #111111 !important;
    text-shadow: none !important;
    margin-bottom: 0 !important;
    font-weight: 700;
    letter-spacing: -0.5px;
}


.section-gold-line {
    width: 80px;
    height: 3.5px;
    background: #b8860b;
    margin: 22px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(184, 134, 11, 0.8);
}

.timeline-wrapper {
    position: relative;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: rgba(184, 134, 11, 0.5);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
}

.timeline-item {
    position: relative;
    margin-bottom: 55px;
    padding-left: 45px;
    perspective: 1000px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 22px;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border: 3px solid #b8860b;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
    transition: all 0.4s ease;
    z-index: 3;
}

.timeline-item:hover .timeline-dot {
    background-color: #b8860b;
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(184, 134, 11, 0.9);
}

/* Black Cards Styling with 3D Depth & Tilt on Hover */
.timeline-content {
    background: #111111;
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 32px 38px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(184, 134, 11, 0.08);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease, 
                background 0.4s ease;
    transform-style: preserve-3d;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
    border-color: #b8860b;
    background: #161616;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28), 0 10px 30px rgba(184, 134, 11, 0.25);
}

.timeline-year {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    background-color: #b8860b;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    box-shadow: 0 0 12px rgba(184, 134, 11, 0.5);
}

.timeline-content h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.7;
}


.tl-anim {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(5px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: var(--d, 0s);
}

.tl-anim.tl-in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .legacy-timeline-section {
        padding: 90px 20px;
    }
}

@media (max-width: 768px) {
    .legacy-timeline-section {
        padding: 60px 15px;
    }
    .timeline-header {
        margin-bottom: 45px;
    }
    .timeline-header h2 {
        font-size: 32px !important; 
    }
    .timeline-wrapper {
        padding-left: 15px;
    }
    .timeline-wrapper::before {
        left: 15px;
    }
    .timeline-dot {
        left: 7px;
        width: 16px;
        height: 16px;
    }
    .timeline-item {
        padding-left: 32px;
        margin-bottom: 35px;
    }
    .timeline-content {
        padding: 22px 20px;
    }
    .timeline-content h3 {
        font-size: 19px;
    }
    .timeline-content p {
        font-size: 14px;
    }
    .timeline-bg-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .legacy-timeline-section {
        padding: 50px 10px;
    }
    .timeline-header h2 {
        font-size: 28px !important;
    }
    .timeline-content {
        padding: 18px 15px;
    }
}



/* CRAFTSMANSHIP & QUALITY SECTION */
.craftsmanship-section {
    padding: 70px 20px 130px 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.88), rgba(15, 15, 15, 0.92)), 
                url(images/quality-about.avif);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.craft-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.craft-header {
    text-align: center;
    margin-bottom: 70px;
}

.craft-header .section-subtitle {
    color: #b8860b;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.craft-header h2 {
    font-size: 44px !important;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0;
}

.section-gold-line {
    width: 80px;
    height: 3.5px;
    background: #b8860b;
    margin: 22px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.9);
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    perspective: 1200px;
}

.craft-card {
    background: rgba(17, 17, 17, 0.96);
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease, background 0.2s ease !important;
    will-change: transform;
}

/* Teeno Cards ke alag-alag fast 3D tilt angles */
.craft-card:nth-child(1):hover {
    transform: translateY(-20px) rotateX(12deg) rotateY(15deg) scale(1.02) !important;
    border-color: #b8860b !important;
    background: rgba(25, 25, 25, 0.98) !important;
    box-shadow: 0 45px 85px rgba(0, 0, 0, 0.8), 0 15px 35px rgba(184, 134, 11, 0.4) !important;
    z-index: 10;
}

.craft-card:nth-child(2):hover {
    transform: translateY(-20px) rotateX(12deg) rotateY(0deg) scale(1.02) !important;
    border-color: #b8860b !important;
    background: rgba(25, 25, 25, 0.98) !important;
    box-shadow: 0 45px 85px rgba(0, 0, 0, 0.8), 0 15px 35px rgba(184, 134, 11, 0.4) !important;
    z-index: 10;
}

.craft-card:nth-child(3):hover {
    transform: translateY(-20px) rotateX(12deg) rotateY(-15deg) scale(1.02) !important;
    border-color: #b8860b !important;
    background: rgba(25, 25, 25, 0.98) !important;
    box-shadow: 0 45px 85px rgba(0, 0, 0, 0.8), 0 15px 35px rgba(184, 134, 11, 0.4) !important;
    z-index: 10;
}

/* Icons Styling */
.craft-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #b8860b;
    margin-bottom: 25px;
    transition: all 0.2s ease;
}

.craft-card:hover .craft-icon-box {
    background: #b8860b;
    color: #111111;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.8);
}

.craft-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.craft-card p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.craft-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.craft-card-footer span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #b8860b;
    text-transform: uppercase;
}

.craft-anim {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(5px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: var(--d, 0s); 
}

.craft-anim.craft-in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .craft-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .craftsmanship-section { padding: 50px 20px 90px 20px; background-attachment: scroll; }
}

@media (max-width: 768px) {
    .craftsmanship-section { padding: 40px 15px 60px 15px; }
    .craft-header h2 { font-size: 32px !important; }
    .craft-card:hover { transform: translateY(-10px) rotateX(0deg) rotateY(0deg) scale(1) !important; }
}





/* FOUNDER / DESIGNER MESSAGE SECTION */
.craftsmanship-section {
    padding: 70px 20px 130px 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.88), rgba(15, 15, 15, 0.92)), 
                url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.craft-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.craft-header {
    text-align: center;
    margin-bottom: 70px;
}

.craft-header .section-subtitle {
    color: #b8860b;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.craft-header h2 {
    font-size: 44px !important;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0;
}

.section-gold-line {
    width: 80px;
    height: 3.5px;
    background: #b8860b;
    margin: 22px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.9);
}


.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    perspective: 1200px;
}

.craft-card {
    background: rgba(17, 17, 17, 0.96);
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease, background 0.2s ease !important;
    will-change: transform;
}

.craft-card:nth-child(1):hover {
    transform: translateY(-20px) rotateX(12deg) rotateY(15deg) scale(1.02) !important;
    border-color: #b8860b !important;
    background: rgba(25, 25, 25, 0.98) !important;
    box-shadow: 0 45px 85px rgba(0, 0, 0, 0.8), 0 15px 35px rgba(184, 134, 11, 0.4) !important;
    z-index: 10;
}

.craft-card:nth-child(2):hover {
    transform: translateY(-20px) rotateX(12deg) rotateY(0deg) scale(1.02) !important;
    border-color: #b8860b !important;
    background: rgba(25, 25, 25, 0.98) !important;
    box-shadow: 0 45px 85px rgba(0, 0, 0, 0.8), 0 15px 35px rgba(184, 134, 11, 0.4) !important;
    z-index: 10;
}

.craft-card:nth-child(3):hover {
    transform: translateY(-20px) rotateX(12deg) rotateY(-15deg) scale(1.02) !important;
    border-color: #b8860b !important;
    background: rgba(25, 25, 25, 0.98) !important;
    box-shadow: 0 45px 85px rgba(0, 0, 0, 0.8), 0 15px 35px rgba(184, 134, 11, 0.4) !important;
    z-index: 10;
}

.craft-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #b8860b;
    margin-bottom: 25px;
    transition: all 0.2s ease;
}

.craft-card:hover .craft-icon-box {
    background: #b8860b;
    color: #111111;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.8);
}

.craft-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.craft-card p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.craft-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.craft-card-footer span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #b8860b;
    text-transform: uppercase;
}

.founder-section {
    padding: 120px 20px;
    background: #0c0c0c;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}


.founder-image-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.founder-image-box::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 20px;
    z-index: -2;
    filter: blur(20px);
    transition: all 0.4s ease;
}

.founder-image-box img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(15%) contrast(1.1);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.9);
    display: block;
    transition: transform 0.4s ease;
}

.founder-image-box img:hover {
    transform: translateY(-8px);
}

.founder-image-box:hover::before {
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.55) 0%, rgba(0, 0, 0, 0) 75%);
    filter: blur(25px);
}

.founder-gold-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(184, 134, 11, 0.4);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.founder-image-box:hover .founder-gold-border {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border-color: #b8860b;
}


.founder-content .section-subtitle {
    color: #b8860b;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.founder-content h2 {
    font-size: 40px !important;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.6), 0 0 40px rgba(184, 134, 11, 0.3);
}

.founder-content .section-gold-line {
    margin: 0 0 30px 0 !important;
}

.founder-quote {
    font-size: 17px;
    color: #cccccc;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 35px;
    border-left: 3px solid #b8860b;
    padding-left: 20px;
}

.founder-details h3 {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.founder-details span {
    font-size: 14px;
    color: #b8860b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.founder-signature {
    font-family: 'Brush Script MT', cursive, serif;
    font-size: 32px;
    color: rgba(184, 134, 11, 0.85);
}

.craft-anim, .founder-anim {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(5px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: var(--d, 0s);
}

.craft-anim.craft-in-view, .founder-anim.founder-in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


/*  RESPONSIVE MEDIA QUERIES  */
@media (max-width: 992px) {
    .craft-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .craftsmanship-section { padding: 50px 20px 90px 20px; background-attachment: scroll; }
    
    .founder-grid { grid-template-columns: 1fr; gap: 50px; }
    .founder-image-box { max-width: 400px; }
    .founder-section { padding: 80px 20px; }
}

@media (max-width: 768px) {
    .craftsmanship-section { padding: 40px 15px 60px 15px; }
    .craft-header h2 { font-size: 32px !important; }
    .craft-card:hover { transform: translateY(-10px) rotateX(0deg) rotateY(0deg) scale(1) !important; }
    
    .founder-content h2 { font-size: 30px !important; }
    .founder-image-box img { height: 400px; }
}




/* CINEMATIC VALUES SECTION*/
.cinematic-values {
    padding: 90px 20px;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.cine-container {
    max-width: 1300px;
    margin: 0 auto;
}

.cine-header {
    text-align: center;
    margin-bottom: 60px;
}

.cine-subtitle {
    color: #b8860b;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.cine-header h2 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.cine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    perspective: 1000px;
}

.cine-card {
    position: relative;
    padding: 50px 30px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.4);
    transform-style: preserve-3d;
    will-change: transform;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.cine-content {
    position: relative;
    z-index: 2;
    transform: translateZ(30px);
}

.cine-icon {
    font-size: 35px;
    color: #b8860b;
    margin-bottom: 15px;
    display: block;
}

.cine-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.cine-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.cine-anim-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cine-anim-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.subtitle-reveal {
    transition-delay: 0.1s;
}

.title-reveal {
    transition-delay: 0.3s;
}

.grid-reveal {
    transition-delay: 0.5s;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .cine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cine-grid {
        grid-template-columns: 1fr;
    }
}


/* SHOP BY CATEGORY SECTION */
.shop-categories-section {
    padding: 60px 20px 100px 20px;
    background: #0b0b0b;
    position: relative;
    border-top: 1px solid rgba(184, 134, 11, 0.4);
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.cat-container {
    max-width: 1300px;
    margin: 0 auto;
}

.cat-header {
    text-align: center;
    margin-bottom: 60px;
}

.cat-subtitle {
    color: #b8860b;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.cat-header h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.cat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: flex-end;
    background-color: #111;
    border: 1px solid rgba(184, 134, 11, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.cat-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cat-card .watchlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.cat-card .watchlist-btn i {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.cat-card .watchlist-btn:hover {
    background: rgba(184, 134, 11, 0.8);
    transform: scale(1.1);
}

.cat-card .watchlist-btn:hover i {
    color: #ffffff;
}

.cat-card .watchlist-btn.active {
    background: #b8860b !important;
}

.cat-card .watchlist-btn.active i {
    color: #ff3b30 !important;
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 15%, rgba(0,0,0,0.2) 70%);
    z-index: 1;
}

.cat-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    text-align: left;
}

.cat-content h3 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cat-content p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cat-btn {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #b8860b;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cat-card:hover {
    transform: perspective(1000px) rotateX(6deg) rotateY(-8deg) translateY(-15px) scale(1.03);
    border-color: #b8860b;
    box-shadow: -20px 30px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(184, 134, 11, 0.5);
    z-index: 10;
}

.cat-card:hover img {
    transform: scale(1.1);
}

.cat-card:hover h3 {
    transform: translateY(-5px);
    color: #b8860b;
}

.cat-btn:hover {
    background: #b8860b;
    color: #000000;
    transform: scale(1.05);
}

/* --- SCROLL REVEAL ANIMATION STYLES --- */
.cat-anim-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cat-anim-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cat-subtitle-reveal {
    transition-delay: 0.1s;
}

.cat-title-reveal {
    transition-delay: 0.3s;
}

.cat-grid-reveal {
    transition-delay: 0.5s;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
    .cat-card {
        height: 400px;
    }
    .cat-card:hover {
        transform: translateY(-10px) rotateX(0) rotateY(0);
    }
}



/*LUXURY FOOTER SECTION */
.luxury-footer {
    position: relative;
    background: #0d0c0a;
    color: #ffffff;
    padding: 80px 0 35px 0;
    overflow: hidden;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    width: 100%;
}

.footer-glow-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.footer-glow-1 { top: -100px; left: -50px; }
.footer-glow-2 { bottom: -100px; right: -50px; }

.footer-container {
    position: relative;
    z-index: 5;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 35px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.8), 0 0 25px rgba(184, 134, 11, 0.4);
}

.footer-logo:hover {
    color: #b8860b;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(184, 134, 11, 1), 0 0 35px rgba(184, 134, 11, 0.7);
}

.interactive-text {
    font-size: 14.5px;
    color: #b5b5b5;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.interactive-text:hover {
    color: #dcdcdc;
}


.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background: rgba(18, 17, 15, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #b8860b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.social-icon-btn:hover {
    background: #b8860b;
    color: #000000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.9);
    border-color: #ffffff;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    cursor: default;
    transition: color 0.3s ease;
    text-shadow: 0 0 12px rgba(184, 134, 11, 0.6);
}

.footer-heading:hover {
    color: #b8860b;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: #b8860b;
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.8);
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 50px;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-interactive-link {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-interactive-link span {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-interactive-link:hover {
    color: #b8860b;
}

.footer-interactive-link:hover span {
    transform: translateX(8px);
    text-shadow: 0 0 12px rgba(184, 134, 11, 0.8);
}

.contact-links-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    font-size: 14.5px;
    color: #b5b5b5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-item span {
    transition: transform 0.3s ease;
}

.contact-item i {
    color: #b8860b;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-item:hover {
    color: #b8860b;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.6);
}

.contact-item:hover span {
    transform: translateX(6px);
}

.contact-item:hover i {
    transform: scale(1.25) rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.9));
}

.newsletter-form {
    display: flex;
    position: relative;
    width: 100%;
}

.footer-input-effect {
    width: 100%;
    padding: 12px 15px;
    background: rgba(18, 17, 15, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-input-effect:focus {
    border-color: #b8860b;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(184, 134, 11, 0.6);
}

.footer-btn-effect {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: #b8860b;
    color: #000000;
    border: none;
    padding: 0 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.footer-input-effect:focus ~ .footer-btn-effect {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(184, 134, 11, 0.5);
}

.footer-btn-effect:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    cursor: default;
}

.copyright-text {
    font-size: 15.5px;
    font-weight: 500;
    color: #a0a0a0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-bottom:hover .copyright-text {
    color: #b8860b;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.9);
}

.luxury-footer .footer-animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-footer.animate-footer .footer-animate-item {
    opacity: 1;
    transform: translateY(0);
}

.luxury-footer.animate-footer .footer-col:nth-child(1) { transition-delay: 0.1s; }
.luxury-footer.animate-footer .footer-col:nth-child(2) { transition-delay: 0.25s; }
.luxury-footer.animate-footer .footer-col:nth-child(3) { transition-delay: 0.4s; }
.luxury-footer.animate-footer .footer-col:nth-child(4) { transition-delay: 0.55s; }
.luxury-footer.animate-footer .footer-bottom { transition-delay: 0.7s; }

/* Responsive Design */
@media screen and (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .luxury-footer {
        padding: 50px 0 20px 0;
    }
}




/*LUXURY RIGHT-SIDE FLOATING BAR CSS */
.luxury-floating-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-action-btn {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(18, 17, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #b8860b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(184, 134, 11, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.float-action-btn:hover {
    background: #b8860b;
    color: #000000;
    transform: translateY(-5px) scale(1.1);
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 134, 11, 0.9);
}

.float-action-btn i {
    transition: transform 0.3s ease;
}

.float-action-btn:hover i {
    transform: scale(1.15);
}

.float-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(18, 17, 15, 0.95);
    color: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.5);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(184, 134, 11, 0.8);
}

.float-action-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
    .luxury-floating-sidebar {
        right: 12px;
        gap: 10px;
    }
    .float-action-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .float-tooltip {
        display: none;
    }
}