/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 12: LOCATION — Shree Studio
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

   .location-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #000000;
    overflow: hidden;
  }
  
  /* Background Gradients */
  .location-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(
        ellipse 60% 40% at 80% 50%,
        rgba(229, 9, 20, 0.03) 0%,
        transparent 70%
      ),
      radial-gradient(
        ellipse 40% 60% at 20% 30%,
        rgba(201, 169, 110, 0.03) 0%,
        transparent 70%
      );
    pointer-events: none;
    z-index: 0;
  }
  
  .location-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  /* Header */
  .location-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .location-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    color: #c9a96e;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .location-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .location-subtitle {
    font-family: "Inter", sans-serif;
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(255, 255, 255, 0.45);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Split Layout Grid */
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
  }
  
  /* Info Panel (Left Side) */
  .location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  /* Cards (Glassmorphism) */
  .location-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
  
  .location-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(229, 9, 20, 0.05) 0%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }
  
  .location-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .location-card:hover::before {
    opacity: 1;
  }
  
  .card-header-icon {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e50914;
    font-size: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(229, 9, 20, 0.2);
  }
  
  .location-card:hover .card-header-icon {
    background: linear-gradient(135deg, #e50914, #ff6b35);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  }
  
  .card-title {
    position: relative;
    z-index: 1;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
  }
  
  /* Address details styles */
  .address-text {
    position: relative;
    z-index: 1;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
  }
  
  /* Timings list styles */
  .timings-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .timing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
  }
  
  .timing-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .timing-day {
    color: rgba(255, 255, 255, 0.55);
  }
  
  .timing-hours {
    color: #c9a96e;
    font-weight: 500;
  }
  
  .timing-hours.closed {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
  }
  
  /* Action Buttons */
  .location-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .btn-directions,
  .btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
  }
  
  .btn-directions {
    background: linear-gradient(135deg, #e50914, #ff6b35);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.25);
  }
  
  .btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
  }
  
  .btn-call {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .btn-call:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
  }
  
  /* Copy Address Button */
  .btn-copy-address {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: rgba(201, 169, 110, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    position: relative;
    z-index: 1;
  }
  
  .btn-copy-address:hover {
    color: #c9a96e;
  }
  
  .btn-copy-address i {
    font-size: 13px;
  }
  
  /* Map Wrapper & Overlay (Right Side) */
  .location-map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #090909;
    height: 100%;
    min-height: 450px;
  }
  
  .location-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    filter: grayscale(1) invert(0.9) contrast(1.2);
    opacity: 0.75;
    transition: all 0.5s ease;
  }
  
  /* Complete Clickable overlay that prevents interaction but starts navigation */
  .map-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
  }
  
  .map-action-badge {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  
  .map-action-badge i {
    color: #e50914;
    font-size: 16px;
    animation: pulseArrow 1.5s infinite;
  }
  
  .location-map-wrapper:hover iframe {
    filter: grayscale(0.5) invert(0.9) contrast(1.1);
    opacity: 0.9;
  }
  
  .location-map-wrapper:hover .map-link-overlay {
    opacity: 1;
  }
  
  .location-map-wrapper:hover .map-action-badge {
    transform: translateY(0) scale(1);
  }
  
  /* Scroll Animation */
  .location-section [data-animate] {
    opacity: 0;
    transition:
      opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
  }
  
  .location-section [data-animate].is-visible {
    opacity: 1;
    transform: none !important;
  }
  
  .location-section [data-animate="fade-up"] {
    transform: translateY(50px);
  }
  
  .location-section [data-delay="200"] {
    transition-delay: 0.2s;
  }
  
  .location-section [data-delay="400"] {
    transition-delay: 0.4s;
  }
  
  /* Animations */
  @keyframes pulseArrow {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
      text-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Responsive Viewports */
  @media (max-width: 991px) {
    .location-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .location-map-wrapper {
      min-height: 380px;
    }
    .location-map-wrapper iframe {
      min-height: 380px;
    }
  }
  
  @media (max-width: 768px) {
    .location-section {
      padding: 80px 0;
    }
    .location-container {
      padding: 0 20px;
    }
    .location-actions {
      grid-template-columns: 1fr;
    }
  }
  