.btn-primary {
    background: #052639
}

.about-title-overlay .btn-primary:hover {
  background-color: #2c414c;
}


/* Why Choose Us Section */
.feature-icon {
    background: linear-gradient(45deg, #457b9d, #b9cedb);
}

/*Services Carousel*/
.service-icon {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
  box-shadow: 0 10px 30px rgba(71, 92, 185, 0.3);
}


/* Corporate Package Builder Styles */
/* Package Builder */
.services-scroll-hint span {
  color: #457b9d;
}
.package-builder-section {
  background: var(#b9cedb, #b9cedb);
}

.services-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
}

.services-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
}

.package-service-card:hover {
  border-color: #457b9d;
}

.package-service-icon {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
}

.package-service-card.selected {
  border-color: #457b9d;
}

.package-service-card.selected .selection-indicator {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
  border-color: #457b9d;
}

.package-summary-card {
  border-top: 4px solid #457b9d;
}

.empty-state i {
  color: #457b9d;
}

.selected-service-item {
  border-left: 3px solid #457b9d;
}

.selected-service-icon {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
}

.items-count {
  color: #457b9d;
}

.package-quote-btn {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
}

.premade-package-card:hover {
  border-color: #457b9d;
}

.premade-package-icon {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
}

.premade-package-price {
  color: #457b9d;
}

.premade-package-btn {
  background: linear-gradient(45deg, #457b9d, #b9cedb);
}

.premade-package-price {
  color: #457b9d;
}

.packages-divider::before,
.packages-divider::after {
  background: linear-gradient(90deg, transparent, #457b9d, transparent);
}

.packages-divider-text {
  background: var(#b9cedb);
}
/* Button Styling with Hover and Focus Effects */
.scroll-to-packages {
    display: inline-block;
    background: linear-gradient(45deg, #457b9d, #b9cedb); /* Corporate color gradient */
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px; /* Adjust spacing from the title */
    transition: all 0.3s ease; /* Smooth transition */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Hover effect */
.scroll-to-packages:hover {
    background: linear-gradient(45deg, #4f80b6, #a8bed9); /* Slightly darker gradient on hover */
    transform: scale(1.05); /* Slight scaling effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

/* Focus state for accessibility */
.scroll-to-packages:focus {
    outline: none; /* Remove default outline */
    border: 2px solid #457b9d; /* Focus border */
    box-shadow: 0 0 0 2px rgba(71, 92, 185, 0.6); /* Blueish glow for focus */
}

/* Active state when the button is clicked */
.scroll-to-packages:active {
    transform: scale(0.98); /* Slight shrinking effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Smaller shadow on click */
}

/* Grid: keep all cards equal height */
.premade-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Card: keep content within bounds, but with adjusted padding */
.premade-package-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 20px;                  /* reduced padding */
    background: #fff;
    border-radius: 12px;
    height: 100%;                         /* ensures consistent height */
    min-height: 270px;                    /* adjusted min-height for compactness */
}

/* Wrap for content area, allowing the button to be at the bottom */
.premade-package-card > div {
    display: flex;
    flex-direction: column;
    gap: 8px;                             /* smaller gap between elements */
    flex: 1;
}

/* Button: keep spacing from content & edge */
.premade-package-btn {
    display: block;
    margin-top: auto;
    padding: 10px 16px;
    border-radius: 999px;
    text-align: center;
}

.floating-builder-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(69, 123, 157, 0.9);
    color: #ffffff;                        
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(69, 123, 157, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-builder-btn:hover {
    transform: translateY(-3px);
    background: rgba(69, 123, 157, 1);    
    box-shadow: 0 12px 28px rgba(69, 123, 157, 0.5);
}

/* Cross-Event Navigation */
.explore-services {
    padding: 60px 20px;
    background: #f8f9fa;
}

.explore-services h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
    color: #457b9d; /* Corporate blue */
}

.service-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-quick-link {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-quick-link i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-quick-link h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.service-quick-link p {
    color: #666;
    margin: 0;
}

/* Icons colored to match destination page */
.service-quick-link.wedding i { color: #e8b4b8; }
.service-quick-link.private i { color: #7752CB; }

/* Hover effect - add border in destination page color */
.service-quick-link.wedding:hover {
    border: 2px solid #e8b4b8;
}

.service-quick-link.private:hover {
    border: 2px solid #7752CB;
}

/* Force link text colors */
.service-quick-link.wedding h4 {
    color: #e8b4b8 !important; /* Wedding rose gold */
}

.service-quick-link.private h4 {
    color: #7752CB !important; /* Private purple */
}

.service-quick-link.wedding:hover h4 {
    color: #d89ca0 !important; /* Darker on hover */
}

.service-quick-link.private:hover h4 {
    color: #5a3d9a !important; /* Darker on hover */
}