  .wedding-destinations {
      padding: 80px 0;
          border-radius: 2%;
      background: linear-gradient(135deg, #fff8f3 0%, #f9f6ff 100%);
  }

  .section-header {
      margin-bottom: 50px;
  }

  .section-header h2 {
      /* font-family: 'Playfair Display', serif; */
      color: #a02c5a;
      font-size: 2.5rem;
      margin-bottom: 10px;
  }

  .section-header p {
      color: #a02c5a;
      font-size: 1.1rem;
      opacity: 0.7;
  }

  .destinations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 20px 0;
  }

  .destination-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(160, 44, 90, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .destination-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(160, 44, 90, 0.15);
  }

  .destination-image {
      position: relative;
      height: 250px;
      overflow: hidden;
  }

  .destination-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .destination-card:hover .destination-image img {
      transform: scale(1.1);
  }

  .destination-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      color: white;
  }

  .destination-overlay h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 5px;
  }

  .destination-overlay p {
      font-size: 0.9rem;
      opacity: 0.9;
  }

  .destination-details {
      padding: 20px;
  }

  .detail-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
  }

  .detail-item svg {
      margin-right: 10px;
  }

  .detail-item span {
      color: #a02c5a;
      font-size: 0.9rem;
  }

  @media (max-width: 768px) {
      .destinations-grid {
          grid-template-columns: 1fr;
      }

      .section-header h2 {
          font-size: 2rem;
      }
  }

  /* Modern and Elegant Styles */
  :root {
      --primary-color: #FFD700;
      --secondary-color: #FFF5E6;
      --text-color: #333;
      --light-text: #666;
      --border-color: rgba(255, 215, 0, 0.2);
      --shadow-color: rgba(0, 0, 0, 0.1);
      --luxury-gradient: linear-gradient(45deg, #e6b980, #eacda3);
  }

  /* Wedding Vector Elements */
  .wedding-vectors {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 3;
      overflow: hidden;
  }

  .vector-rings {
      position: absolute;
      top: 20px;
      right: 40px;
      width: 120px;
      height: 120px;
      opacity: 0.7;
  }

  .vector-flowers {
      position: absolute;
      width: 150px;
      height: 150px;
      opacity: 0.5;
  }

  .vector-flowers.top-left {
      top: 30px;
      left: 30px;
      transform: rotate(-30deg);
  }

  .vector-flowers.bottom-right {
      bottom: 30px;
      right: 30px;
      transform: rotate(30deg);
  }

  .vector-divider {
      width: 200px;
      height: 30px;
      margin: 20px auto;
  }

  .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .vector-dress {
      transform: translateY(20px);
      transition: transform 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
      opacity: 1;
  }

  .gallery-item:hover .vector-dress {
      transform: translateY(0);
  }

  /* Hero Section */
  .hero-banner {
      position: relative;
      height: 80vh;
      margin-bottom: 60px;
      overflow: hidden;
  }

  .hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  }

  .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 2;
      width: 80%;
      max-width: 800px;
  }

  .hero-content h1 {
      font-size: 4em;
      margin-bottom: 20px;
      font-weight: 300;
      letter-spacing: 2px;
  }

  .hero-content p {
      font-size: 1.5em;
      opacity: 0.9;
  }

  /* Content Section */
  .content-section {
      padding: 60px 0;
  }

  .section-intro {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-intro h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--text-color);
  }

  .section-intro p {
      font-size: 1.1em;
      color: var(--light-text);
      max-width: 800px;
      margin: 0 auto;
  }

  /* Gallery Section */
  .gallery-section {
      margin-bottom: 0px;
  }

  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }

  .gallery-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      /* aspect-ratio: 3/4; */
  }

  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.5s ease;
  }

  .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .gallery-overlay span {
      color: white;
      font-size: 1.2em;
      padding: 10px 20px;
      border: 2px solid white;
      border-radius: 5px;
      transform: translateY(20px);
      transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
      transform: scale(1.1);
  }

  .gallery-item:hover .gallery-overlay {
      opacity: 1;
  }

  .gallery-item:hover .gallery-overlay span {
      transform: translateY(0);
  }

  /* Process Section */
  .process-section {
      padding: 60px 0;
      background: var(--secondary-color);
      margin: 60px 0;
      border-radius: 20px;
  }

  .process-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5em;
  }

  .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 0 30px;
  }

  .process-item {
      text-align: center;
      padding: 30px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 20px var(--shadow-color);
      transition: transform 0.3s ease;
  }

  .process-item:hover {
      transform: translateY(-10px);
  }

  .process-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
  }

  .process-item h3 {
      margin-bottom: 15px;
      color: var(--text-color);
  }

  .process-item p {
      color: var(--light-text);
      line-height: 1.6;
  }

  /* Description Section */
  .description-section {
      padding: 0px 0;
      margin: 00px 0;
      background: linear-gradient(to right, #fff, var(--secondary-color) 20%, var(--secondary-color) 80%, #fff);
      border-radius: 20px;
  }

  .description-section h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.3em;
      color: var(--text-color);
  }

  .description-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      padding: 20px;
  }

  .desc-image {
      flex: 1;
      min-width: 300px;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .desc-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
  }

  .corner-vector {
      position: absolute;
      width: 30px;
      height: 30px;
      opacity: 0.8;
  }

  .corner-vector.top-left {
      top: 10px;
      left: 10px;
  }

  .corner-vector.top-right {
      top: 10px;
      right: 10px;
  }

  .corner-vector.bottom-left {
      bottom: 10px;
      left: 10px;
  }

  .corner-vector.bottom-right {
      bottom: 10px;
      right: 10px;
  }

  .desc-text {
      flex: 1;
      min-width: 300px;
  }

  .desc-text p {
      margin-bottom: 20px;
      line-height: 1.7;
      color: var(--text-color);
  }

  .desc-features {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 15px;
      margin-top: 30px;
  }

  .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .feature-icon {
      width: 25px;
      height: 25px;
  }

  .feature-item span {
      font-weight: 500;
      color: var(--text-color);
  }

  /* Compact FAQ Styling */
  .compact-faq {
      padding: 40px 0;
      background: white;
      border-radius: 15px;
      box-shadow: 0 3px 10px var(--shadow-color);
  }

  .compact-faq h2 {
      font-size: 1.4em;
      margin-bottom: 25px;
  }

  .compact-accordion .accordion-item {
      margin-bottom: 10px;
  }

  .compact-accordion .accordion-button {
      padding: 15px;
      font-size: 0.7em;
  }

  .compact-accordion .accordion-body {
      padding: 15px;
  }

  .compact-accordion .accordion-body p {
      font-size: 0.9em;
      margin-bottom: 0;
  }

  .small-cake {
      width: 60px;
      height: 60px;
      top: 20px;
      right: 10%;
  }

  /* Sidebar */
  .sidebar {
      position: sticky;
      top: 30px;
  }

  .sidebar-widget {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px var(--shadow-color);
      position: relative;
  }

  .sidebar-vector {
      position: absolute;
      top: -20px;
      right: 20px;
      width: 60px;
      height: 60px;
      opacity: 0.7;
  }

  .sidebar-vector-bottom {
      width: 100%;
      height: 30px;
      margin-top: 20px;
      opacity: 0.7;
  }

  .sidebar-widget h3 {
      margin-bottom: 20px;
      font-size: 1.5em;
      color: var(--text-color);
  }

  .service-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .service-list li {
      margin-bottom: 15px;
  }

  .service-list a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      color: var(--text-color);
      text-decoration: none;
      border-radius: 5px;
      transition: all 0.3s ease;
  }

  .service-list a:hover {
      background: var(--secondary-color);
      color: var(--primary-color);
  }

  .service-list span {
      background: var(--secondary-color);
      padding: 5px 10px;
      border-radius: 15px;
      font-size: 0.9em;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .hero-content h1 {
          font-size: 3em;
      }

      .process-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2.5em;
      }

      .gallery-grid {
          grid-template-columns: 1fr;
      }

      .process-grid {
          grid-template-columns: 1fr;
      }

      .sidebar {
          margin-top: 40px;
      }
  }

  .floating-vector {
      position: absolute;
      pointer-events: none;
      z-index: 1;
  }

  .cake-vector {
      width: 80px;
      height: 80px;
      top: 30px;
      right: 10%;
      opacity: 0.7;
      animation: float 4s ease-in-out infinite;
  }

  @keyframes float {
      0% {
          transform: translateY(0) rotate(0deg);
      }

      50% {
          transform: translateY(-10px) rotate(3deg);
      }

      100% {
          transform: translateY(0) rotate(0deg);
      }
  }

  .bouquet-vector {
      position: absolute;
      top: 10px;
      left: 10%;
      width: 100px;
      height: 100px;
      opacity: 0.7;
      z-index: 1000;
      pointer-events: none;
      animation: gentle-sway 5s ease-in-out infinite;
  }

  @keyframes gentle-sway {
      0% {
          transform: rotate(-2deg);
      }

      50% {
          transform: rotate(2deg);
      }

      100% {
          transform: rotate(-2deg);
      }
  }

  /* Luxury Elements */
  .luxury-overlay {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)) !important;
  }

  .exclusive-label {
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-color);
      color: #333;
      padding: 5px 15px;
      font-size: 0.8em;
      letter-spacing: 2px;
      font-weight: 600;
      border-radius: 3px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  .hero-signature {
      margin-top: 30px;
      opacity: 0.8;
      width: 100px;
      margin: 20px auto 0;
  }

  .luxury-text {
      background: var(--luxury-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 600;
  }

  .highlight {
      color: var(--primary-color);
      font-weight: 500;
  }

  .luxury-border {
      position: relative;
      padding: 30px;
  }

  .luxury-corner {
      position: absolute;
      width: 20px;
      height: 20px;
      border-color: var(--primary-color);
      opacity: 0.8;
  }

  .luxury-corner.top-left {
      top: 0;
      left: 0;
      border-top: 2px solid;
      border-left: 2px solid;
  }

  .luxury-corner.top-right {
      top: 0;
      right: 0;
      border-top: 2px solid;
      border-right: 2px solid;
  }

  .luxury-corner.bottom-left {
      bottom: 0;
      left: 0;
      border-bottom: 2px solid;
      border-left: 2px solid;
  }

  .luxury-corner.bottom-right {
      bottom: 0;
      right: 0;
      border-bottom: 2px solid;
      border-right: 2px solid;
  }

  .luxury-corner-element {
      position: absolute;
      width: 40px;
      height: 40px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M2,2 L20,2 M2,2 L2,20' stroke='%23FFD700' stroke-width='2' fill='none'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      opacity: 0.7;
  }

  .luxury-corner-element.top-left {
      top: 20px;
      left: 20px;
  }

  .luxury-corner-element.top-right {
      top: 20px;
      right: 20px;
      transform: rotate(90deg);
  }

  .luxury-corner-element.bottom-left {
      bottom: 20px;
      left: 20px;
      transform: rotate(270deg);
  }

  .luxury-corner-element.bottom-right {
      bottom: 20px;
      right: 20px;
      transform: rotate(180deg);
  }

  .luxury-frame-corner {
      position: absolute;
      width: 60px;
      height: 60px;
      opacity: 0.7;
  }

  .luxury-frame-corner.top-left {
      top: 0;
      left: 0;
      border-top: 3px solid var(--primary-color);
      border-left: 3px solid var(--primary-color);
      border-radius: 10px 0 0 0;
  }

  .luxury-frame-corner.top-right {
      top: 0;
      right: 0;
      border-top: 3px solid var(--primary-color);
      border-right: 3px solid var(--primary-color);
      border-radius: 0 10px 0 0;
  }

  .luxury-frame-corner.bottom-left {
      bottom: 0;
      left: 0;
      border-bottom: 3px solid var(--primary-color);
      border-left: 3px solid var(--primary-color);
      border-radius: 0 0 0 10px;
  }

  .luxury-frame-corner.bottom-right {
      bottom: 0;
      right: 0;
      border-bottom: 3px solid var(--primary-color);
      border-right: 3px solid var(--primary-color);
      border-radius: 0 0 10px 0;
  }

  .luxury-badge {
      display: inline-block;
      background: var(--luxury-gradient);
      color: #333;
      padding: 5px 15px;
      margin-bottom: 20px;
      font-size: 0.8em;
      letter-spacing: 2px;
      font-weight: 600;
      border-radius: 3px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .floating-diamond {
      position: absolute;
      top: 30px;
      right: 10%;
      width: 50px;
      height: 50px;
      z-index: 1000;
      opacity: 0.7;
      animation: rotate-slow 12s linear infinite;
  }

  @keyframes rotate-slow {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  .vector-lace {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50px;
      opacity: 0.5;
  }

  .image-sparkle {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 215, 0, 0.8);
      z-index: 10;
      pointer-events: none;
  }

  .sparkle-1 {
      top: 20%;
      left: 30%;
      animation: sparkle 3s ease-in-out infinite;
  }

  .sparkle-2 {
      top: 70%;
      left: 60%;
      animation: sparkle 4s ease-in-out 1s infinite;
  }

  .sparkle-3 {
      top: 40%;
      left: 80%;
      animation: sparkle 5s ease-in-out 2s infinite;
  }

  @keyframes sparkle {
      0% {
          transform: scale(0);
          opacity: 0;
      }

      50% {
          transform: scale(1);
          opacity: 0.8;
      }

      100% {
          transform: scale(0);
          opacity: 0;
      }
  }

  /* Enhanced Responsive Design */
  @media (max-width: 768px) {
      .luxury-frame-corner {
          width: 40px;
          height: 40px;
      }

      .description-content {
          padding: 10px;
          gap: 20px;
      }

      .desc-features {
          grid-template-columns: 1fr;
      }

      .exclusive-label {
          top: -65px;
      }
  }

  /* Description Section - Enhanced */
  .description-section {
      position: relative;
      padding: 60px 0;
      margin: 80px 0;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  /* Enhanced Sidebar Styles */
  .sidebar {
      position: relative;
  }

  .sidebar-widget {
      position: relative;
      margin-bottom: 40px;
      overflow: hidden;
  }

  /* Luxury Widget Styling */
  .luxury-widget {
      background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.9), rgba(255, 215, 0, 0.05));
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
  }

  .luxury-widget::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(255, 215, 0, 0.08), transparent 40%, rgba(255, 215, 0, 0.08) 80%);
      pointer-events: none;
  }

  .crown-vector {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 70px;
      height: 35px;
      opacity: 0.6;
      animation: gentle-float 5s ease-in-out infinite;
  }

  .widget-header {
      position: relative;
      text-align: center;
      margin-bottom: 25px;
  }

  .widget-header h3 {
      font-size: 1.5em;
      color: #333;
      font-weight: 400;
      letter-spacing: 1px;
      margin-bottom: 10px;
  }

  .widget-divider {
      width: 100px;
      height: 10px;
      margin: 0 auto;
  }

  /* Luxury Service List */
  .luxury-service-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .service-item {
      margin-bottom: 12px;
      transition: transform 0.3s ease;
  }

  .service-item:hover {
      transform: translateX(5px);
  }

  .service-item a {
      display: flex;
      align-items: center;
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 50px;
      text-decoration: none;
      color: #333;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      overflow: hidden;
      position: relative;
  }

  .service-item a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: linear-gradient(to bottom, #FFD700, transparent);
      transition: width 0.3s ease;
  }

  .service-item a:hover {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-item a:hover::before {
      width: 5px;
  }

  .service-icon {
      width: 30px;
      height: 30px;
      margin-right: 15px;
  }

  .service-content {
      flex: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .service-title {
      font-size: 0.95em;
      font-weight: 500;
  }

  .service-counter {
      display: inline-block;
      width: 24px;
      height: 24px;
      line-height: 24px;
      text-align: center;
      background: var(--luxury-gradient);
      color: #333;
      border-radius: 50%;
      font-size: 0.8em;
      font-weight: 600;
  }

  /* Testimonial Widget */
  .testimonial-widget {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
  }

  .testimonial-widget::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
      border-radius: 0 10px 0 100%;
  }

  .testimonial-widget::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 80px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
      border-radius: 0 100% 0 10px;
  }

  .quote-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 15px;
      opacity: 0.6;
  }

  .testimonial-text {
      font-size: 1em;
      line-height: 1.6;
      color: #555;
      font-style: italic;
      margin-bottom: 20px;
  }

  .testimonial-author {
      display: flex;
      flex-direction: column;
  }

  .author-name {
      font-weight: 600;
      font-size: 0.9em;
      color: #333;
  }

  .wedding-date {
      font-size: 0.8em;
      color: #888;
  }

  /* Countdown Widget */
  .countdown-widget {
      background: linear-gradient(to bottom right, #fff, var(--secondary-color));
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      text-align: center;
  }

  .countdown-header {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #333;
  }

  .countdown-units {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 25px;
  }

  .countdown-unit {
      width: 60px;
      text-align: center;
  }

  .count {
      font-size: 1.8em;
      font-weight: 300;
      color: #333;
      background: var(--luxury-gradient);
      border-radius: 5px;
      padding: 10px 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .unit-label {
      font-size: 0.8em;
      margin-top: 8px;
      color: #666;
  }

  .luxury-button {
      display: inline-block;
      background: var(--luxury-gradient);
      color: #333;
      font-size: 0.9em;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
  }

  .luxury-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      color: #111;
  }

  /* Collection Widget */
  .collection-widget {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .collection-item {
      position: relative;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .collection-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
  }

  .collection-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
  }

  .collection-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .collection-overlay span {
      color: white;
      font-size: 1em;
      padding: 8px 20px;
      border: 1px solid white;
      border-radius: 50px;
      transform: translateY(20px);
      transition: transform 0.3s ease;
  }

  .collection-item:hover .collection-image img {
      transform: scale(1.1);
  }

  .collection-item:hover .collection-overlay {
      opacity: 1;
  }

  .collection-item:hover .collection-overlay span {
      transform: translateY(0);
  }

  .collection-caption {
      background: #fff;
      padding: 12px 15px;
      text-align: center;
      font-size: 0.9em;
      color: #333;
      position: relative;
  }

  .collection-caption::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 30px;
      height: 3px;
      background: var(--primary-color);
      opacity: 0.6;
  }

  @keyframes gentle-float {
      0% {
          transform: translateY(0) rotate(0deg);
      }

      50% {
          transform: translateY(-5px) rotate(2deg);
      }

      100% {
          transform: translateY(0) rotate(0deg);
      }
  }

  @media (max-width: 991px) {
      .sidebar {
          margin-top: 60px;
      }
  }

  @media (max-width: 767px) {
      .crown-vector {
          width: 50px;
          height: 25px;
      }

      .countdown-units {
          gap: 10px;
      }

      .countdown-unit {
          width: 50px;
      }

      .count {
          font-size: 1.5em;
          padding: 8px 0;
      }
  }

  /* NEW STYLES FOR ADDED SIDEBAR WIDGETS */

  /* Designer Spotlight Widget */
  .designer-spotlight {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
  }

  .designer-portrait-container {
      position: relative;
      text-align: center;
  }

  .designer-frame {
      position: relative;
      margin: 0 auto 20px;
      width: 80%;
      max-width: 200px;
      aspect-ratio: 1/1;
      border-radius: 10px;
      overflow: hidden;
  }

  .designer-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
  }

  .frame-corner {
      position: absolute;
      width: 30px;
      height: 30px;
      z-index: 2;
  }

  .frame-corner.top-left {
      top: 0;
      left: 0;
  }

  .frame-corner.top-right {
      top: 0;
      right: 0;
  }

  .frame-corner.bottom-left {
      bottom: 0;
      left: 0;
  }

  .frame-corner.bottom-right {
      bottom: 0;
      right: 0;
  }

  .design-element {
      position: absolute;
      width: 60px;
      height: 60px;
      pointer-events: none;
      opacity: 0.8;
  }

  .needle-thread {
      bottom: -15px;
      right: -15px;
      transform: rotate(-15deg);
  }

  .designer-info {
      padding: 10px 0;
  }

  .designer-info h4 {
      font-size: 1.2em;
      margin-bottom: 5px;
      color: #333;
      font-weight: 500;
  }

  .designer-title {
      display: block;
      font-size: 0.9em;
      color: #888;
      margin-bottom: 10px;
  }

  .designer-signature {
      width: 100px;
      height: 30px;
      margin: 10px auto;
      opacity: 0.7;
  }

  /* Wedding Quiz Widget */
  .wedding-quiz {
      background: linear-gradient(to bottom right, #fff, var(--secondary-color));
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .dress-styles-vector {
      width: 100%;
      height: 70px;
      margin: 0 auto 20px;
      opacity: 0.8;
  }

  .quiz-intro {
      text-align: center;
  }

  .quiz-intro p {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
  }

  .style-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 20px;
  }

  .style-option {
      position: relative;
  }

  .style-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
  }

  .style-option label {
      display: block;
      padding: 10px;
      text-align: center;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid var(--border-color);
      border-radius: 5px;
      font-size: 0.9em;
      color: #333;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .style-option input[type="radio"]:checked+label {
      background: var(--luxury-gradient);
      color: #333;
      border-color: var(--primary-color);
  }

  .style-option label:hover {
      background: rgba(255, 215, 0, 0.1);
  }

  .quiz-button {
      font-size: 0.85em;
      padding: 10px 25px;
  }

  /* Appointment Widget */
  .appointment-widget {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .calendar-vector {
      width: 100px;
      height: 100px;
      margin: 0 auto 20px;
      opacity: 0.8;
  }

  .featured-times {
      text-align: center;
  }

  .times-header {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #333;
  }

  .time-slots {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
  }

  .time-slot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 15px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 5px;
      border-left: 3px solid var(--primary-color);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }

  .time-date {
      font-weight: 500;
      color: #333;
  }

  .time-availability {
      font-size: 0.85em;
      color: #666;
  }

  .book-button {
      font-size: 0.85em;
      padding: 10px 25px;
  }

  /* Fabric Swatches Widget */
  .swatches-widget {
      background: linear-gradient(to bottom, #fff, var(--secondary-color));
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .scissors-vector {
      width: 100px;
      height: 40px;
      margin: 0 auto 20px;
      opacity: 0.7;
  }

  .fabric-swatches {
      text-align: center;
  }

  .swatch-row {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 15px;
  }

  .fabric-swatch {
      width: 80px;
      height: 80px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .fabric-swatch span {
      background: rgba(255, 255, 255, 0.8);
      font-size: 0.8em;
      padding: 3px 8px;
      border-radius: 10px;
      font-weight: 500;
  }

  .fabric-swatch::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      opacity: 0.9;
      transition: transform 0.3s ease;
  }

  .fabric-swatch:hover::before {
      transform: scale(1.1);
  }

  .fabric-swatch.satin::before {
      background-image: linear-gradient(135deg, #f6e6b4 0%, #f6e6b4 25%, #e6b980 50%, #e6b980 75%, #f6e6b4 100%);
  }

  .fabric-swatch.chiffon::before {
      background-image: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  }

  .fabric-swatch.lace::before {
      background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e6b980' fill-opacity='0.4' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  }

  .fabric-swatch.silk::before {
      background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  }

  .swatch-info {
      margin-top: 20px;
  }

  .swatch-info p {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 10px;
  }

  .fabric-details-link {
      display: inline-block;
      color: #333;
      font-weight: 500;
      text-decoration: none;
      position: relative;
      font-size: 0.9em;
  }

  .fabric-details-link::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--primary-color);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
  }

  .fabric-details-link:hover::after {
      transform: scaleX(1);
      transform-origin: left;
  }

  /* Responsive Adjustments */
  @media (max-width: 767px) {
      .style-options {
          grid-template-columns: 1fr;
      }

      .fabric-swatch {
          width: 70px;
          height: 70px;
      }
  }

  /* Swiper Carousel Styles */
  .swiper-container.destinationSwiper {
      padding: 20px 0 60px;
      overflow: hidden;
      position: relative;
  }

  .swiper-slide {
      height: auto;
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: stretch;
  }

  .swiper-slide .destination-card {
      width: 100%;
      height: 100%;
      margin: 0;
  }

  .swiper-slide-active {
      transform: scale(1.05);
  }

  .swiper-button-next,
  .swiper-button-prev {
      color: #a02c5a;
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(160, 44, 90, 0.15);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
      font-size: 18px;
  }

  .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: rgba(160, 44, 90, 0.3);
      opacity: 1;
  }

  .swiper-pagination-bullet-active {
      background: #a02c5a;
      transform: scale(1.2);
  }

  @media (max-width: 768px) {
      .swiper-button-next,
      .swiper-button-prev {
          display: none;
      }
      
      .swiper-slide-active {
          transform: scale(1);
      }
  }