:root {
  --bg-color: #FFFFFF;        
  --text-color: #111111;      
  --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)); 
}

.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;
  }
}




/* hero contact section */
.contact-hero-section {
    position: relative;
    height: 85vh;
    min-height: 580px;
    background: url(images/contact-hero.jpg) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    border-bottom: 1px solid rgba(184, 134, 11, 0.4);
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-hero-section.is-loaded {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3,3,3,0.7), rgba(8,8,8,0.9));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.contact-hero-subtitle {
    color: #b8860b;
    font-size: 15px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 18px;
}

.contact-hero-content h1 {
    font-size: 62px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.15;
    text-shadow: 0 15px 35px rgba(0,0,0,0.9);
    transition: transform 0.1s ease-out;
}

.contact-hero-content p {
    font-size: 17px;
    color: #d1d1d1;
    margin-bottom: 0; 
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-section {
        height: 70vh;
    }
    .contact-hero-content h1 {
        font-size: 40px;
    }
    .contact-hero-content p {
        font-size: 15px;
    }
}




/* get in touch */

.luxury-split-section {
    padding: 130px 20px;
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    perspective: 1200px;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.split-left-3d-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 50px 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12), 0 0 35px rgba(184, 134, 11, 0.25);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.1s ease-out, box-shadow 0.4s ease, border-color 0.4s ease, opacity 1s, transform 1s;
    cursor: pointer;
}

.split-left-3d-card:hover {
    border-color: #b8860b;
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.18), 0 0 55px rgba(184, 134, 11, 0.45);
}

.left-content-inner .luxury-subtitle {
    color: #b8860b;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
}

.left-content-inner h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 25px;
    color: #111111;
    letter-spacing: -0.5px;
}

.left-content-inner p {
    color: #555555;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 30px;
}

.left-accent-line {
    width: 50px;
    height: 2px;
    background: #b8860b;
}

.split-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dark-info-card {
    background: #0a0a0a;
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 30px 32px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-info-card:hover {
    background: #000000;
    border-color: #b8860b;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(184, 134, 11, 0.2), 0 20px 40px rgba(0, 0, 0, 0.6);
}

.card-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid rgba(184, 134, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.dark-info-card:hover .card-icon-box {
    background: #b8860b;
    transform: scale(1.1) rotate(10deg);
}

.card-text-content h4 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #ffffff;
}

.card-text-content p {
    color: #cccccc;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.card-text-content .sub-text {
    color: #999999;
    font-size: 13px;
    display: block;
    margin-top: 4px;
}

/* --- Responsive Design for Mobile/Tablet --- */
@media (max-width: 900px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-left-3d-card {
        padding: 35px 25px;
    }
    
    .left-content-inner h2 {
        font-size: 32px;
    }
}



/* send a message */
.luxury-form-section {
    padding: 80px 20px 130px 20px; 
    background: #050505;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

.form-container {
    max-width: 1050px; 
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.luxury-subtitle {
    color: #b8860b;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.form-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.form-header p {
    color: #aaaaaa;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.luxury-line {
    width: 60px;
    height: 2px;
    background: #b8860b;
    margin: 0 auto;
}

.stagger-item {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-header.active .stagger-item:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.form-header.active .stagger-item:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.form-header.active .stagger-item:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.form-header.active .stagger-item:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

.reveal-3d-form {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, 
                transform 0.1s ease-out,
                box-shadow 0.4s ease;
    background: #0a0a0a;
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 60px;
    border-radius: 14px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 40px rgba(184, 134, 11, 0.12);
    transform-style: preserve-3d;
    will-change: transform;
    cursor: pointer;
}

.reveal-3d-form.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-3d-form:hover {
    border-color: #b8860b;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(184, 134, 11, 0.25);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
}

.input-group.full-width {
    grid-column: span 2;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: #141414;
    border: 1px solid #282828;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.input-group textarea {
    resize: vertical;
}


.input-group label {
    position: absolute;
    left: 20px;
    top: 19px;
    color: #888888;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: #b8860b;
    background: #0a0a0a;
    padding: 0 6px;
    font-weight: 600;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #b8860b;
    background: #111111;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.15);
}

.form-submit-box {
    text-align: center;
}

.luxury-submit-btn {
    background: #b8860b;
    color: #050505;
    border: none;
    padding: 18px 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

.luxury-submit-btn:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .input-group.full-width {
        grid-column: span 1;
    }
    .reveal-3d-form {
        padding: 30px 20px;
    }
    .form-header h2 {
        font-size: 32px;
    }
}



/* location */

.luxury-map-section {
    padding: 110px 20px 140px 20px;
    background: #ffffff; 
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.map-container {
    max-width: 1400px; 
    margin: 0 auto;
}


.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.luxury-subtitle {
    color: #b8860b;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.map-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.map-header p {
    color: #555555;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.luxury-line {
    width: 60px;
    height: 2px;
    background: #b8860b;
    margin: 0 auto;
}


.stagger-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stagger-header.active {
    opacity: 1;
    transform: translateY(0);
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.35);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.15), 0 0 40px rgba(184, 134, 11, 0.1);
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease;
}

.map-wrapper.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.map-wrapper:hover {
    border-color: #b8860b;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.22), 0 0 60px rgba(184, 134, 11, 0.2);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 600px;
    filter: contrast(1.05) brightness(0.98);
}

.map-floating-card {
    position: absolute;
    bottom: 35px;
    left: 35px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 24px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 380px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.map-floating-card:hover {
    transform: translateY(-5px);
}

.floating-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.floating-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.floating-text p {
    font-size: 13px;
    color: #cccccc;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.direction-link {
    font-size: 12px;
    color: #b8860b;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.direction-link:hover {
    color: #ffffff;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .map-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    .map-wrapper iframe {
        height: 420px;
    }
    .map-header h2 {
        font-size: 30px;
    }
}



/* faq question */
.modern-faq-section {
    padding: 90px 20px 130px 20px;
    margin-top: -60px;
    background: #030303;
    position: relative;
    overflow: hidden;
    perspective: 1400px;
    z-index: 5;
}

.modern-faq-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.faq-wrapper-main {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-header-box {
    text-align: center;
    margin-bottom: 50px;
}

.faq-tag, .faq-main-title, .faq-header-box p, .faq-title-bar {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-header-box.active .faq-tag { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.faq-header-box.active .faq-main-title { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.faq-header-box.active p { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.faq-header-box.active .faq-title-bar { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

.faq-tag {
    color: #b8860b;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.faq-main-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.5px;
    display: block !important;
}

.faq-header-box p {
    color: #b3b3b3 !important;
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.faq-title-bar {
    width: 60px;
    height: 3px;
    background: #b8860b;
    margin: 0 auto;
    border-radius: 2px;
}

.faq-luxury-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-card-item {
    background: linear-gradient(145deg, #0d0d0d 0%, #060606 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease,
                background 0.4s ease;
}

.faq-luxury-container.active .faq-card-item:nth-child(1) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.1s; }
.faq-luxury-container.active .faq-card-item:nth-child(2) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.2s; }
.faq-luxury-container.active .faq-card-item:nth-child(3) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.3s; }
.faq-luxury-container.active .faq-card-item:nth-child(4) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.4s; }
.faq-luxury-container.active .faq-card-item:nth-child(5) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.5s; }

.faq-card-item:hover {
    border-color: rgba(184, 134, 11, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
    transform: translateY(-3px) scale(1.005);
}

/* Card click hone par peeche ki taraf tilt/press hone wala effect */
.faq-card-item.active-card {
    border-color: #b8860b !important;
    background: linear-gradient(135deg, #121212 0%, #070707 100%) !important;
    box-shadow: -15px 25px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(184, 134, 11, 0.2) !important;
    transform: translateY(6px) scale(0.97) rotateX(8deg) rotateY(-4deg) translateZ(-30px) !important;
}

.faq-question-btn {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
}

.q-number {
    font-size: 14px;
    font-weight: 700;
    color: #b8860b;
    letter-spacing: 1px;
    opacity: 0.9;
}

.q-text {
    flex-grow: 1;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-card-item:hover .q-text,
.faq-card-item.active-card .q-text {
    color: #f1c40f;
}

.q-icon {
    font-size: 13px;
    color: #b8860b;
    width: 32px;
    height: 32px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}

.faq-card-item.active-card .q-icon {
    transform: rotate(180deg);
    background: #b8860b;
    color: #030303;
}

.faq-answer-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 28px;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer-pane p {
    padding-bottom: 24px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

@media (max-width: 768px) {
    .modern-faq-section {
        padding: 60px 15px 90px 15px;
        margin-top: -40px;
    }
    .faq-main-title {
        font-size: 30px !important;
    }
    .faq-question-btn {
        padding: 20px 16px;
        gap: 14px;
    }
    .q-text {
        font-size: 15px;
    }
    .faq-answer-pane {
        padding: 0 16px;
    }
}


/* why choose us  */
.brand-usp-section {
    padding: 100px 20px;
    background: #ffffff !important;
    position: relative;
    z-index: 10;
    perspective: 1500px;
    overflow: hidden;
}

.usp-header {
    text-align: center;
    margin-bottom: 60px;
}

.usp-title-anim {
    font-size: 38px;
    color: #0c0c0c !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.usp-line-anim {
    width: 0px; 
    height: 4px;
    background: #b8860b;
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0;
    transition: width 0.6s ease 0.3s, opacity 0.3s ease 0.3s; 
}

.usp-header.active-header .usp-title-anim {
    opacity: 1;
    transform: translateY(0);
}

.usp-header.active-header .usp-line-anim {
    width: 70px;
    opacity: 1;
}

.usp-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1150px;
    margin: 0 auto;
}

.usp-card {
    background: transparent;
    height: 320px;
    cursor: pointer;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.usp-wrapper.active-cards .usp-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

.usp-wrapper.active-cards .usp-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.25s;
}

.usp-wrapper.active-cards .usp-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.usp-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(184, 134, 11, 0.12);
}

.usp-card.flipped .usp-card-inner {
    transform: rotateY(180deg);
}

.usp-card-front, .usp-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.usp-card-front {
    background: #ffffff;
    border: 2px solid #b8860b;
}

.usp-card-back {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #ffffff;
    transform: rotateY(180deg);
    border: 2px solid #b8860b;
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
}

.usp-card-back h3 {
    color: #f1c40f;
    font-size: 20px;
    margin-bottom: 12px;
}

.usp-card-back p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.tap-hint {
    font-size: 11px;
    color: #b8860b;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.usp-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 14px;
    font-weight: 800;
    color: #b8860b;
}

.usp-icon-box {
    width: 55px;
    height: 55px;
    background: #b8860b;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

.usp-card-front h3 {
    font-size: 19px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.usp-card-front p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .brand-usp-section {
        padding: 60px 15px;
    }
    .usp-card {
        height: 300px;
    }
}





/*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;
    }
}