html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scroll */
    height: 100%;
}

/* Ensure sticky positioning works correctly */
body {
    position: relative;
}

.justify-content-left {
    justify-content: flex-start !important;
}

/* Portfolio View Styles - Enhanced Elegance */
.portfolio-hero {
    padding: 2.5rem 0 1.5rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    position: relative;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(248, 187, 208, 0.03) 61px,
        rgba(248, 187, 208, 0.03) 62px
    );
}

.portfolio-breadcrumb {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.breadcrumb-link {
    color: #8b6b73;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #b76e79;
    transition: width 0.3s ease;
}

.breadcrumb-link:hover {
    color: #b76e79;
}

.breadcrumb-link:hover::after {
    width: 100%;
}

.breadcrumb-separator {
    color: #b0969c;
    margin: 0 1rem;
    opacity: 0.7;
    font-weight: 300;
}

.breadcrumb-current {
    color: #7a5f66;
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #8b6b73;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.portfolio-subtitle {
    color: #9d8389;
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Main Image Container (60%) - Enhanced */
.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    background: #fafbfc;
    border: 1px solid rgba(248, 187, 208, 0.2);
}

.main-portfolio-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: saturate(0.9) contrast(1.05);
}

.main-image-container:hover .main-portfolio-image {
    transform: scale(1.015);
    filter: saturate(1) contrast(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 0%,
        transparent 65%,
        rgba(0, 0, 0, 0.2) 85%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.image-info {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.image-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.image-date {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 400;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.gallery-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #8b6b73;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Portfolio Description Card - Enhanced */
.portfolio-description-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow:
        0 2px 20px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(248, 187, 208, 0.15);
    position: relative;
    overflow: hidden;
}

.portfolio-description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8a4b8, #f4d2dd, #e8a4b8);
    opacity: 0.6;
}

.description-text {
    color: #6b5b61;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.quick-action-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Other Images Section (40%) - Enhanced */
.other-images-section {
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    color: #8b6b73;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #e8a4b8, #f4d2dd);
    border-radius: 1px;
}

.other-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.other-images-grid::-webkit-scrollbar {
    width: 6px;
}

.other-images-grid::-webkit-scrollbar-track {
    background: rgba(248, 187, 208, 0.1);
    border-radius: 3px;
}

.other-images-grid::-webkit-scrollbar-thumb {
    background: rgba(183, 110, 121, 0.6);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.other-images-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(183, 110, 121, 0.8);
}

.other-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(248, 187, 208, 0.2);
}

.other-image-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(183, 110, 121, 0.3);
}

.other-portfolio-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: saturate(0.85);
}

.other-image-card:hover .other-portfolio-image {
    transform: scale(1.05);
    filter: saturate(1);
}

.other-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.other-image-card:hover .other-image-overlay {
    opacity: 1;
}

.other-image-info {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.other-image-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.view-btn {
    font-size: 1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.other-image-card:hover .view-btn {
    transform: scale(1.1);
}

/* Call to Action Card - Enhanced */
.cta-card {
    background: linear-gradient(135deg, #faf8f9 0%, #f5f1f3 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(248, 187, 208, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 187, 208, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 20px rgba(232, 164, 184, 0.4);
    transition: all 0.4s ease;
}

.cta-card:hover .cta-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(232, 164, 184, 0.5);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    color: #8b6b73;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}

.cta-description {
    color: #7a6b71;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Enhanced Button Styles */
.btn-pink {
    background: linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(232, 164, 184, 0.3) !important;
}

.btn-pink:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(232, 164, 184, 0.4) !important;
    background: linear-gradient(135deg, #e099af 0%, #f0c7d4 100%) !important;
}

.btn-outline-pink {
    border: 2px solid #e8a4b8 !important;
    color: #8b6b73 !important;
    background: transparent !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.4s ease !important;
}

.btn-outline-pink:hover {
    background: linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%) !important;
    color: white !important;
    border-color: #e8a4b8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(232, 164, 184, 0.3) !important;
}

/* Image Loading Indicator */
.image-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.image-loading .spinner-border {
    color: #b76e79;
}

/* Responsive Design - Enhanced */
@media (max-width: 991px) {
    .portfolio-main-title {
        font-size: 2.25rem;
    }

    .main-portfolio-image {
        height: 420px;
    }

    .other-images-grid {
        grid-template-columns: repeat(3, 1fr);
        max-height: 320px;
        gap: 0.75rem;
    }

    .other-portfolio-image {
        height: 130px;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .portfolio-hero {
        padding: 1.5rem 0 1rem 0;
    }

    .portfolio-main-title {
        font-size: 1.95rem;
        line-height: 1.3;
    }

    .portfolio-subtitle {
        font-size: 1rem;
    }

    .main-portfolio-image {
        height: 320px;
    }

    .main-image-container {
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .portfolio-description-card {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .description-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .other-images-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 280px;
        gap: 0.5rem;
    }

    .other-portfolio-image {
        height: 110px;
    }

    .other-image-card {
        border-radius: 10px;
    }

    .cta-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .cta-title {
        font-size: 1.2rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .quick-action-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .quick-action-bar .btn {
        width: 100%;
    }

    .breadcrumb-separator {
        margin: 0 0.5rem;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.9rem;
    }

    /* Mobile overlay always visible but subtle */
    .image-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.25);
    }

    .other-image-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.4);
    }

    .image-overlay,
    .other-image-overlay {
        backdrop-filter: blur(2px);
    }
}

/* Extra small devices */
@media (max-width: 575px) {
    .portfolio-main-title {
        font-size: 1.75rem;
    }

    .main-portfolio-image {
        height: 280px;
    }

    .other-images-grid {
        max-height: 240px;
    }

    .other-portfolio-image {
        height: 100px;
    }

    .action-buttons {
        gap: 0.5rem;
    }

    .gallery-btn {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}

/* Elegant Loading States */
.image-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.image-loading .spinner-border {
    color: #e8a4b8;
    width: 2rem;
    height: 2rem;
}

/* Subtle Page Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: elegantFadeIn 0.8s ease forwards;
}

@keyframes elegantFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

/* Elegant Focus States */
.gallery-btn:focus,
.btn-pink:focus,
.btn-outline-pink:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 164, 184, 0.3);
}

/* Improved Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .portfolio-hero,
    .cta-card,
    .action-buttons,
    .gallery-btn,
    .quick-action-bar {
        display: none !important;
    }

    .main-image-container,
    .other-image-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Card */
.coming-soon-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin: 2rem auto;
    max-width: 400px;
}

.coming-soon-card i {
    opacity: 0.6;
}

.coming-soon-card h3 {
    font-family: 'Playfair Display', serif;
    color: #b76e79;
    margin-bottom: 1rem;
}

/* Enhanced Gallery Cards for Home Page */
.gallery-card {
    height: 350px !important;
    border: 1px solid #f3f3f3;
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(233, 30, 99, 0.25) !important;
    border-color: #e91e63;
}

.gallery-overlay {
    background: linear-gradient(
        transparent 0%,
        transparent 50%,
        rgba(0,0,0,0.4) 75%,
        rgba(0,0,0,0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-actions {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.1s;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.gallery-card:hover .gallery-actions {
    opacity: 1;
    transform: translateY(0);
}

.gallery-actions .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.gallery-actions .btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.9);
    color: #e91e63;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gallery-actions .btn.btn-primary-action {
    background: linear-gradient(45deg, #e91e63, #f8bbd0);
    border-color: transparent;
    color: white;
}

.gallery-actions .btn.btn-primary-action:hover {
    background: linear-gradient(45deg, #d81b60, #e91e63);
    transform: translateY(-3px) scale(1.1);
    color: white;
}

.gallery-actions .btn i {
    font-size: 0.875rem;
}

/* Mobile responsiveness for gallery actions */
@media (max-width: 768px) {
    .gallery-actions {
        gap: 6px;
        margin-top: 8px;
    }

    .gallery-actions .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .gallery-card {
        height: 280px !important;
    }

    .gallery-overlay {
        opacity: 1;
        background: rgba(0,0,0,0.4);
    }

    .gallery-content {
        transform: translateY(0);
    }

    .gallery-actions {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved Gallery Image Hover Effect */
.gallery-image {
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

/* Enhanced Button Styles */
.btn-pink, .btn-outline-pink {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-pink:hover, .btn-outline-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.elegant-btn {
    position: relative;
    overflow: hidden;
}

.elegant-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.elegant-btn:hover::before {
    left: 100%;
}

/* About Section Enhancements */
.about-image-container {
    transition: transform 0.3s ease;
}

.about-image-container:hover {
    transform: scale(1.02);
}

.about-image {
    transition: all 0.3s ease;
}

.about-overlay {
    transition: opacity 0.3s ease;
}

.about-image-container:hover .about-overlay {
    opacity: 0.7;
}

.about-description {
    line-height: 1.8;
    font-size: 1.1rem;
}

.stats-item {
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
}

.stats-item:hover {
    transform: translateX(5px);
    background: rgba(248, 187, 208, 0.1);
}

/* Service Cards Enhancement */
.service-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #f3f3f3;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #f8bbd0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2);
    border-color: #e91e63;
}

/* Package Cards Enhancement */
.package-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    border: 1px solid #f3f3f3;
    overflow: hidden;
}

.package-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover::after {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px rgba(233, 30, 99, 0.25);
    border-color: #e91e63;
}

/* Testimonial Cards Enhancement with Smooth Transitions */
.testimonial-title {
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

/* Testimonial Carousel Specific Styles */
#testimonialCarousel .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

#testimonialCarousel .carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Testimonial Image Animations */
#testimonialCarousel .rounded-circle {
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%) border-box;
}

#testimonialCarousel .rounded-circle:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #e8a4b8;
    box-shadow: 0 8px 20px rgba(232, 164, 184, 0.3);
}

/* Testimonial Star Ratings Animation */
#testimonialCarousel .text-warning i {
    transition: all 0.2s ease;
    display: inline-block;
}

#testimonialCarousel .text-warning:hover i {
    transform: scale(1.2);
    color: #ffc107;
    text-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

#testimonialCarousel .text-warning i:nth-child(1) { transition-delay: 0s; }
#testimonialCarousel .text-warning i:nth-child(2) { transition-delay: 0.1s; }
#testimonialCarousel .text-warning i:nth-child(3) { transition-delay: 0.2s; }
#testimonialCarousel .text-warning i:nth-child(4) { transition-delay: 0.3s; }
#testimonialCarousel .text-warning i:nth-child(5) { transition-delay: 0.4s; }

/* Testimonial Carousel Controls - Pink Theme */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-image: none !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #df7d9a 0%, #f9c4d5 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    opacity: 1 !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(232, 164, 184, 0.3) !important;
}

#testimonialCarousel .carousel-control-prev-icon:hover,
#testimonialCarousel .carousel-control-next-icon:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(232, 164, 184, 0.4) !important;
    background: linear-gradient(135deg, #e099af 0%, #f0c7d4 100%) !important;
}

#testimonialCarousel .carousel-control-prev-icon::after {
    content: '\2039' !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

#testimonialCarousel .carousel-control-next-icon::after {
    content: '\203A' !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

/* Testimonial Carousel Indicators - Pink Theme */
#testimonialCarousel .carousel-indicators {
    margin-bottom: 0 !important;
}

#testimonialCarousel .carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(232, 164, 184, 0.6) !important;
    opacity: 1 !important;
    transition: all 0.4s ease !important;
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: #e8a4b8 !important;
    border-color: #e8a4b8 !important;
    transform: scale(1.2) !important;
    box-shadow: 0 0 10px rgba(232, 164, 184, 0.5) !important;
}

#testimonialCarousel .carousel-indicators button:hover {
    background-color: #f4d2dd !important;
    border-color: #e8a4b8 !important;
    transform: scale(1.1) !important;
}

/* Newsletter Section Enhancement */
.form-control, .form-select {
    border: 2px solid #f8bbd0 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(248, 187, 208, 0.15) !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease !important;
}

.form-control:focus, .form-select:focus {
    border-color: #d63384 !important;
    box-shadow: 0 4px 16px rgba(214, 51, 132, 0.25) !important;
    outline: none !important;
    transform: translateY(-2px);
}

.form-control:hover, .form-select:hover {
    border-color: #e91e63 !important;
    box-shadow: 0 3px 12px rgba(248, 187, 208, 0.25) !important;
}

/* Contact Cards Enhancement */
.contact-card {
    border: 1px solid #f3f3f3;
    transition: all 0.4s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 187, 208, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.15);
    border-color: #e91e63;
}

/* Hero Section Enhancement */
.carousel-item {
    transition: transform 1.5s ease-in-out;
}

/* Smooth scrolling for internal links */
html {
    scroll-behavior: smooth;
}

/* Section padding adjustments */
@media (max-width: 767px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .container.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

/* Pure CSS Sticky Navbar Solution - Fixed */
.navbar {
    background: linear-gradient(90deg, #fce4ec 0%, #fff0f6 100%) !important;
    border-bottom: 2px solid #f8bbd0 !important;
    box-shadow: 0 2px 8px rgba(248, 187, 208, 0.13) !important;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    width: 100% !important;
    padding: 0.25rem 0 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

/* Ensure proper sticky behavior for all browsers */
html {
    scroll-behavior: smooth !important;
}

body {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.2rem !important;
    color: #b76e79 !important;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    margin-right: 48px;
    text-decoration: none !important;
}

.navbar-brand:hover {
    color: #8b4a54 !important;
    text-decoration: none !important;
}

.navbar-brand span {
    color: #b76e79 !important;
    font-size: 2rem !important;
    font-family: 'Playfair Display', serif !important;
    letter-spacing: 1px;
}

.navbar-brand img {
    height: 60px !important;
    width: 60px !important;
    margin-right: 18px;
    border-radius: 50%;
    box-shadow: 0 2px 8px #f8bbd0;
    border: 3px solid #f8bbd0;
    background: #fff0f6;
    object-fit: cover;
    transition: all 0.3s ease;
}

.navbar-nav {
    font-family: 'Poppins', sans-serif !important;
}

.nav-link {
    color: #b76e79 !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    transition: color 0.2s;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
}

.nav-link:hover, .nav-link.active {
    color: #d63384 !important;
    text-decoration: underline;
    background: rgba(232, 164, 184, 0.1) !important;
}

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid #f8bbd0;
    box-shadow: 0 4px 16px rgba(248, 187, 208, 0.44);
    background: rgba(255, 240, 246, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    font-family: 'Poppins', sans-serif;
    color: #b76e79 !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #fce4ec;
    color: #d63384 !important;
}

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid #f8bbd0;
    box-shadow: 0 4px 16px rgba(248, 187, 208, 0.44);
    background: rgba(255, 240, 246, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    font-family: 'Poppins', sans-serif;
    color: #b76e79 !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #fce4ec;
    color: #d63384 !important;
}

/* Mobile responsive navbar */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.8rem !important;
        margin-right: 1rem;
    }

    .navbar-brand img {
        height: 48px !important;
        margin-right: 14px;
    }

    .navbar-collapse {
        background: rgba(255, 240, 246, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 12px !important;
        margin-top: 0.5rem !important;
        padding: 1rem !important;
        border: 1px solid rgba(248, 187, 208, 0.3) !important;
        box-shadow: 0 8px 25px rgba(183, 110, 121, 0.15) !important;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
        margin: 0.25rem 0 !important;
    }

    .nav-link:hover {
        background: rgba(248, 187, 208, 0.1) !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem !important;
    }

    .navbar-brand img {
        height: 40px !important;
        margin-right: 10px;
    }
}

/* Fix for iOS Safari sticky issues */
@supports (-webkit-touch-callout: none) {
    .navbar {
        position: -webkit-sticky !important;
        position: sticky !important;
    }
}body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff0f6 0%, #fce4ec 100%);
    color: #4a2c2a;
}

h1, h2, h3, .hero-title {
    font-family: 'Playfair Display', serif !important;
    color: #b76e79 !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    text-shadow: 0 4px 16px #fff0f6, 0 2px 8px #f8bbd0;
}

.hero-title {
    color: #b76e79 !important;
    text-shadow: 0 2px 8px #f8bbd0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b76e79;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
}

.hero-subtitle {
    color: #a05c68 !important;
    text-shadow: none;
}

.btn-pink {
    background: #f8bbd0 !important;
    color: #b76e79 !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 0.75rem 2rem !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    transition: background 0.2s, color 0.2s !important;
    box-shadow: 0 2px 8px #f8bbd044 !important;
}

.btn-pink:hover {
    background: #b76e79 !important;
    color: #fff !important;
}

.btn-outline-pink {
    border: 2px solid #f8bbd0;
    color: #b76e79 !important;
    background: transparent;
}

.btn-outline-pink:hover {
    background: #b76e79 !important;
    color: #fff !important;
    border-color: #b76e79 !important;
}

.section-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px #f8bbd044;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
}
.pink-label {
    background: #fff0f6;
    color: #d63384 !important; /* Light pink text */
    padding: 0.4em 1.2em;
    border-radius: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px #f8bbd022;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.tag-name {
    color: #f18caf !important;
    font-size: x-large !important;
}

/* Footer minimal styles */
.footer-heading { color:#b76e79; font-weight:700; letter-spacing:0.5px; margin-bottom:0.75rem; }
.footer-link { color:#b76e79; text-decoration:none; }
.footer-link:hover { color:#d63384; text-decoration:underline; }
.footer-logo { width:38px; height:38px; border-radius:50%; background: linear-gradient(135deg, #f8bbd0, #fff0f6); box-shadow: 0 2px 8px #f8bbd044; border:2px solid #f8bbd0; }
.social-btn { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:#fff; color:#b76e79; box-shadow:0 4px 16px #f8bbd044; border:1px solid #f8bbd0; transition:transform .15s ease, box-shadow .15s ease; }
.social-btn:hover { transform: translateY(-2px); box-shadow:0 6px 20px #f8bbd066; color:#d63384; }
.footer-newsletter .footer-input { border:1px solid #f8bbd0; }
.footer-newsletter .footer-submit { border-top-left-radius:0; border-bottom-left-radius:0; }

/* Form input styles */
.form-control, .form-select {
    border: 2px solid #f8bbd0 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(248, 187, 208, 0.15) !important;
    padding: 0.50rem 0.50rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.form-control:focus, .form-select:focus {
    border-color: #d63384 !important;
    box-shadow: 0 4px 16px rgba(214, 51, 132, 0.25) !important;
    outline: none !important;
}

.form-control:hover, .form-select:hover {
    border-color: #e91e63 !important;
    box-shadow: 0 3px 12px rgba(248, 187, 208, 0.25) !important;
}
.package-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    margin-bottom: 2rem;
    border: 1px solid #f3f3f3;
}
.package-card:hover {
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: #e91e63;
}
.contact-card {
    border: 1px solid #f3f3f3;
    transition: box-shadow 0.3s, transform 0.3s;
}
.contact-card:hover {
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.12);
    transform: translateY(-4px) scale(1.02);
    border-color: #e91e63;
}
.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.bg-pink { background: linear-gradient(45deg, #e91e63, #f8bbd0) !important; }
.bg-blue { background: linear-gradient(45deg, #2196f3, #90caf9) !important; }
.bg-green { background: linear-gradient(45deg, #43a047, #a5d6a7) !important; }
.contact-details { font-size: 1rem; line-height: 1.7; }
.service-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #f3f3f3;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: #e91e63;
}
.package-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.2rem 0 0.5rem 0;
    color: #e91e63;
}
.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.5rem;
}
.package-savings {
    display: inline-block;
    background: #ffe4ec;
    color: #d81b60;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.2rem 0.7rem;
    margin-bottom: 1rem;
}
.section-a { background: #ffffff; }
.section-b { background: linear-gradient(180deg, #fff0f6 0%, #ffe4ec 100%); }
.wave-top { position: relative; }
/* Footer should not render a bottom wave */
#footer::after { display: none; }

/* Footer styles */
.footer-heading { color:#b76e79; font-weight:700; letter-spacing:0.5px; margin-bottom:0.75rem; }
.footer-link { color:#b76e79; text-decoration:none; }
.footer-link:hover { color:#d63384; text-decoration:underline; }
.footer-logo { width:38px; height:38px; border-radius:50%; background: linear-gradient(135deg, #f8bbd0, #fff0f6); box-shadow: 0 2px 8px #f8bbd044; border:2px solid #f8bbd0; }
.social-btn { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:#fff; color:#b76e79; box-shadow:0 4px 16px #f8bbd044; border:1px solid #f8bbd0; transition:transform .15s ease, box-shadow .15s ease; }
.social-btn:hover { transform: translateY(-2px); box-shadow:0 6px 20px #f8bbd066; color:#d63384; }
.footer-newsletter .footer-input { border:1px solid #f8bbd0; }
.footer-newsletter .footer-submit { border-top-left-radius:0; border-bottom-left-radius:0; }
/* Elegant subtle section separators - fixed alignment */
.section-a::after, .section-b::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(90deg, transparent 0%, rgba(248, 187, 208, 0.3) 50%, transparent 100%);
    opacity: 0.6;
}

/* Remove wave separators for portfolio pages */
.portfolio-hero::after,
.portfolio-content::after {
    display: none !important;
}
/* Subtle geometric overlays per section */
#services::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
    background-image: linear-gradient(0deg, rgba(246, 202, 217, 0.15) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(246, 202, 217, 0.10) 1px, transparent 1px);
    background-size: 28px 28px; }
#packages::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.28;
    background-image: radial-gradient(circle at 25% 25%, rgba(241, 140, 175, 0.12) 2px, transparent 3px),
                        radial-gradient(circle at 75% 75%, rgba(241, 140, 175, 0.10) 2px, transparent 3px);
    background-size: 46px 46px; }
#testimonials::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.20;
    background-image: linear-gradient(180deg, rgba(255, 182, 193, 0.08), rgba(255, 182, 193, 0)); mix-blend-mode: multiply; }
#gallery::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.22;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.35) 35%, rgba(255, 255, 255, 0.0) 70%); }
#subscribe::after { content: ""; position: absolute; inset: auto -60px -80px auto; width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255,255,255,0.35), rgba(255,255,255,0)); filter: blur(6px); opacity: 0.6; }
#contact::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.16;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0)); }
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0);}
40% { transform: translateY(-10px);}
60% { transform: translateY(-5px);}
}

.animate-bounce { animation: bounce 2s infinite; }

.text-pink { color: var(--rose-pink) !important; }

.bg-pink { background: linear-gradient(45deg, var(--rose-pink), var(--deep-pink)) !important; }

.object-fit-cover { object-fit: cover; }

/* Gallery Card Styles */
.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f3f3;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.25);
    border-color: #e91e63;
}

.gallery-overlay {
    background: linear-gradient(
        transparent 0%,
        transparent 50%,
        rgba(0,0,0,0.6) 80%,
        rgba(0,0,0,0.9) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

/* Hide actions initially and show on hover */
.gallery-actions {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease 0.1s;
}

.gallery-card:hover .gallery-actions {
    opacity: 1;
    transform: translateY(0);
}.gallery-image {
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.gallery-actions .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 6px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 44px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-actions .btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.9);
    color/* : #e91e63;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gallery- */actions .btn i {
    font-size: 0.875rem;
}

.gallery-actions .btn-with-text {
    padding: 6px 16px;
}

.gallery-actions .btn-with-text i {
    margin-right: 6px;
}

.gallery-actions .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.3);
}

/* Gallery action button entrance animation */
.gallery-actions .btn {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease forwards;
}

.gallery-card:hover .gallery-actions .btn:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-card:hover .gallery-actions .btn:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-card:hover .gallery-actions .btn:nth-child(3) {
    animation-delay: 0.3s;
}

/* Special styling for primary action button */
.gallery-actions .btn.btn-primary-action {
    background: linear-gradient(45deg, #e91e63, #f8bbd0);
    border-color: transparent;
    color: white;
}

.gallery-actions .btn.btn-primary-action:hover {
    background: linear-gradient(45deg, #d81b60, #e91e63);
    transform: translateY(-3px) scale(1.1);
}

/* Mobile responsiveness for gallery actions */
@media (max-width: 768px) {
    .gallery-actions {
        gap: 6px;
        margin-top: 8px;
    }

    .gallery-actions .btn {
        min-width: 38px;
        height: 32px;
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .gallery-actions .btn-with-text {
        padding: 4px 12px;
    }

    .gallery-actions .btn-with-text span {
        font-size: 0.75rem;
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 187, 208, 0.3);
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.show {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lightbox-overlay.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    min-height: 300px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 0;
}

.lightbox-info {
    padding: 30px;
    text-align: center;
    background: white;
}

.lightbox-title {
    color: #e91e63;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.lightbox-description {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.lightbox-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile responsiveness for lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 20px;
    }

    .lightbox-image {
        max-height: 50vh;
    }

    .lightbox-info {
        padding: 20px;
    }

    .lightbox-title {
        font-size: 1.5rem;
    }

    .lightbox-actions {
        flex-direction: column;
        gap: 10px;
    }

    .lightbox-actions .btn {
        width: 100%;
    }
}

/* Ensure modal is on top */
.modal {
    z-index: 1060;
}

.modal-backdrop {
    z-index: 1050;
}

.testimonial-title{
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Carousel Styles */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    transition: opacity 0.6s ease-in-out;
}

.carousel-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    pointer-events: none;
}

/* Elegant Carousel Control Buttons */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 1;
}

/* Pink Rounded Button Style for Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    opacity: 1 !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(232, 164, 184, 0.3) !important;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(232, 164, 184, 0.4) !important;
    background: linear-gradient(135deg, #e099af 0%, #f0c7d4 100%) !important;
}

/* Pink Rounded Button Style for Carousel Indicators */
.carousel-indicators {
    z-index: 2;
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none !important;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    transition: all 0.4s ease;
    margin: 0 4px;
    box-shadow: 0 2px 8px rgba(232, 164, 184, 0.2);
}

.carousel-indicators [data-bs-target]:hover {
    transform: translateY(-1px);
    opacity: 0.9;
    background: linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%);
    box-shadow: 0 4px 12px rgba(232, 164, 184, 0.3);
}

.carousel-indicators .active {
    background: linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%) !important;
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232, 164, 184, 0.4) !important;
}

/* Carousel Control Positioning */
.carousel-control-prev {
    left: 2%;
}

.carousel-control-next {
    right: 2%;
}

/* Mobile Responsive Carousel Controls */
@media (max-width: 768px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
        font-size: 1.5rem !important;
    }

    .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}
.carousel-control-prev-icon::after {
    content: '\2039' !important; /* Unicode for left angle */
    color: #fff !important;
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

.carousel-control-next-icon::after {
    content: '\203A' !important; /* Unicode for right angle */
    color: #fff !important;
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

.section-title {
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}
.section-underline {
    width: 80px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #e91e63 0%, #f8bbd0 100%);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
    section#about,
    section#services,
    section#packages,
    section#testimonials,
    section#gallery,
    section#subscribe,
    section#contact {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    section#services > .container,
    section#packages > .container,
    section#testimonials > .container,
    section#gallery > .container,
    section#subscribe > .container,
    section#contact > .container {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
}

.lightbox-info {
    padding: 20px;
}

.lightbox-title {
    font-size: 1.5rem;
}

.lightbox-actions {
    flex-direction: column;
    gap: 10px;
}

.lightbox-actions .btn {
    width: 100%;
}

/* Portfolio view mobile styles */
.main-portfolio-image {
    height: 50vh !important;
}

.other-portfolio-image {
    height: 120px !important;
}

.other-images-grid {
    max-height: 50vh !important;
}

.action-buttons {
    flex-direction: row !important;
}

.image-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.3);
}

.other-image-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.5);
}


section#subscribe,
    section#contact {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    section#services > .container,
    section#packages > .container,
    section#testimonials > .container,
    section#gallery > .container,
    section#subscribe > .container,
    section#contact > .container {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
}

/* Enhanced Portfolio Navigation Styles */
.portfolio-hero {
    background: linear-gradient(135deg, #fff0f6 0%, #ffffff 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(232, 164, 184, 0.1);
}

.portfolio-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8b6b73;
    margin-bottom: 10px;
    line-height: 1.2;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 0;
}

/* Modern Breadcrumb Navigation */
.breadcrumb-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(232, 164, 184, 0.2);
    box-shadow: 0 4px 20px rgba(139, 107, 115, 0.1);
    margin: 0 auto;
    max-width: fit-content;
}

.breadcrumb-item-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b6b73;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 25px;
}

.breadcrumb-item-modern:hover {
    background: rgba(232, 164, 184, 0.1);
    color: #e8a4b8;
    transform: translateY(-2px);
}

.breadcrumb-current-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e8a4b8;
    font-weight: 600;
    background: rgba(232, 164, 184, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
}

.breadcrumb-separator {
    color: #ddd;
    font-size: 12px;
}

/* Modern Navigation Buttons */
.nav-buttons-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.nav-button-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f4d2dd 0%, #e8a4b8 100%);
    color: #8b6b73;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 600;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(139, 107, 115, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-button-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.nav-button-modern:hover::before {
    left: 100%;
}

.nav-button-modern:hover {
    background: linear-gradient(135deg, #e8a4b8 0%, #d1879b 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 107, 115, 0.3);
    text-decoration: none;
}

.nav-button-modern.nav-all {
    background: linear-gradient(135deg, #8b6b73 0%, #a07d88 100%);
    color: white;
}

.nav-button-modern.nav-all:hover {
    background: linear-gradient(135deg, #6d5259 0%, #8b6b73 100%);
}

.nav-button-modern i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-button-modern:hover i {
    transform: scale(1.2);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #ddd;
}

.breadcrumb-list a {
    color: #8b6b73;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #e8a4b8;
}

.breadcrumb-current {
    color: #8b6b73;
    font-weight: 600;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e8a4b8;
    color: #8b6b73;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e8a4b8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 107, 115, 0.3);
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4d2dd;
    color: #8b6b73;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.nav-button:hover {
    background: #e8a4b8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 107, 115, 0.3);
    text-decoration: none;
}

.nav-button i {
    font-size: 16px;
}

/* Gallery Card Enhancements */
.gallery-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(139, 107, 115, 0.25);
}

.gallery-overlay {
    background: linear-gradient(
        transparent 0%,
        transparent 40%,
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-image {
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #8b6b73;
    transform: translateY(-2px);
}

.btn-primary-action {
    background: #e8a4b8 !important;
    border-color: #e8a4b8 !important;
    color: white !important;
}

.btn-primary-action:hover {
    background: #d1879b !important;
    border-color: #d1879b !important;
    color: white !important;
}

/* Portfolio Stats and Footer */
.portfolio-stats {
    margin-bottom: 30px;
}

.stats-badge {
    background: #f4d2dd;
    color: #8b6b73;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid rgba(139, 107, 115, 0.1);
}

.portfolio-footer-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 60px 40px;
    border: 2px dashed #e9ecef;
}

/* Quick Action Bar */
.quick-action-bar {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 107, 115, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-main-title {
        font-size: 2.2rem;
    }

    .breadcrumb-modern {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        border-radius: 20px;
    }

    .breadcrumb-item-modern,
    .breadcrumb-current-modern {
        font-size: 14px;
    }

    .breadcrumb-separator {
        display: none;
    }

    .nav-buttons-modern {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .nav-button-modern {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        max-width: 280px;
    }

    .breadcrumb-list {
        font-size: 13px;
        gap: 6px;
    }

    .portfolio-filters {
        gap: 8px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .nav-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .portfolio-footer-actions {
        flex-direction: column;
        gap: 10px;
    }

    .quick-action-bar {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-actions {
        gap: 5px;
    }

    .gallery-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            transparent 0%,
            transparent 30%,
            rgba(0,0,0,0.6) 60%,
            rgba(0,0,0,0.9) 100%
        );
    }

    .gallery-content {
        transform: translateY(0);
    }
}

/* Portfolio Index Page Specific Styles */
.portfolio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.25);
}

.portfolio-overlay {
    background: linear-gradient(
        transparent 0%,
        transparent 50%,
        rgba(0,0,0,0.6) 80%,
        rgba(0,0,0,0.9) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-image {
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-view-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #e91e63;
    border: none;
    font-weight: 600;
}

.portfolio-view-btn:hover {
    background: #fff;
    color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 187, 208, 0.3);
}

/* Enhanced Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.show {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lightbox-overlay.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    min-height: 300px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 0;
}

.lightbox-info {
    padding: 30px;
    text-align: center;
    background: white;
}

.lightbox-title {
    color: #e91e63;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.lightbox-description {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.lightbox-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Backgrounds */
.section-a {
    background: #ffffff;
}

.section-b {
    background: linear-gradient(180deg, #fff0f6 0%, #ffe4ec 100%);
}

.section-title {
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.section-underline {
    width: 80px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #e91e63 0%, #f8bbd0 100%);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Additional Mobile Responsiveness for Portfolio Index */
@media (max-width: 767px) {
    .portfolio-card {
        height: 300px !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(
            transparent 0%,
            transparent 40%,
            rgba(0,0,0,0.7) 70%,
            rgba(0,0,0,0.9) 100%
        );
    }

    .portfolio-content {
        transform: translateY(0);
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 20px;
    }

    .lightbox-image {
        max-height: 50vh;
    }

    .lightbox-info {
        padding: 20px;
    }

    .lightbox-title {
        font-size: 1.5rem;
    }

    .lightbox-actions {
        flex-direction: column;
        gap: 10px;
    }

    .lightbox-actions .btn {
        width: 100%;
    }
}

.success-icon {
    animation: successPulse 1.5s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

#globalBookingModal .form-control:focus,
#globalBookingModal .form-select:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

#globalBookingModal .btn-pink {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    border: none;
    transition: all 0.3s ease;
}

#globalBookingModal .btn-pink:hover {
    background: linear-gradient(135deg, #d81b60 0%, #c2185b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

#globalBookingModal .btn-outline-pink {
    color: #e91e63;
    border-color: #e91e63;
    transition: all 0.3s ease;
}

#globalBookingModal .btn-outline-pink:hover {
    background-color: #e91e63;
    border-color: #e91e63;
    color: white;
}

/* Popular Package Styles */
.popular-package {
    position: relative;
    border: 2px solid #e8a4b8 !important;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(232, 164, 184, 0.2) !important;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(232, 164, 184, 0.3);
    border: 2px solid white;
}

.popular-package .package-card {
    background: linear-gradient(135deg, #fff 0%, #fdf8f9 100%);
}

.popular-package .package-title {
    color: #e8a4b8 !important;
}

.popular-package .btn-outline-pink {
    background: linear-gradient(135deg, #e8a4b8 0%, #f4d2dd 100%);
    border-color: #e8a4b8;
    color: white;
    font-weight: 600;
}

.popular-package .btn-outline-pink:hover {
    background: linear-gradient(135deg, #e099af 0%, #f0c7d4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 164, 184, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23b76e79' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
    width: 1.5em !important;
    height: 1.5em !important;
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.8rem !important;
        margin-right: 1rem !important;
    }

    .navbar.scrolled .navbar-brand {
        font-size: 1.6rem !important;
    }

    .navbar-brand img {
        height: 45px !important;
        width: 45px !important;
        margin-right: 10px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 35px !important;
        width: 35px !important;
    }

    .navbar-collapse {
        background: rgba(255, 240, 246, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        margin-top: 1rem !important;
        border-radius: 12px !important;
        padding: 1.5rem !important;
        box-shadow: 0 8px 25px rgba(183, 110, 121, 0.15) !important;
        border: 1px solid rgba(248, 187, 208, 0.3) !important;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0 !important;
        border-radius: 10px !important;
        font-size: 1.1rem !important;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(232, 164, 184, 0.15) !important;
        transform: translateX(8px) !important;
        box-shadow: 0 2px 8px rgba(232, 164, 184, 0.2) !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.5rem !important;
        letter-spacing: 1px !important;
    }

    .navbar.scrolled .navbar-brand {
        font-size: 1.3rem !important;
    }

    .navbar-brand img {
        height: 40px !important;
        width: 40px !important;
        margin-right: 8px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 32px !important;
        width: 32px !important;
    }
}

/* Enhanced navbar brand on mobile */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.6rem !important;
    }

    .navbar.scrolled .navbar-brand {
        font-size: 1.4rem !important;
    }

    .navbar-brand img {
        height: 45px !important;
        margin-right: 12px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 35px !important;
    }
}

/* CSS-only smooth scrolling and section offset */
html {
    scroll-behavior: smooth !important;
}

/* Proper offset for all sections with sticky navbar */
section[id],
#heroCarousel,
#about,
#services,
#packages,
#testimonials,
#gallery,
#subscribe,
#contact {
    scroll-margin-top: 90px !important;
    scroll-snap-margin-top: 90px !important;
}

/* Ensure main content doesn't overlap with sticky navbar */
main {
    position: relative !important;
    z-index: 1 !important;
}

/* Fix carousel height to account for navbar */
.carousel-item {
    min-height: calc(100vh - 80px) !important;
}

/* Ensure proper stacking context */
.navbar.sticky-top {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
}

/* Packages Carousel Styles */
.packages-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.packages-carousel-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.packages-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.packages-carousel.no-transition {
    transition: none;
}

.package-slide {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 15px;
}

/* Responsive carousel widths */
@media (min-width: 768px) {
    .package-slide {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .package-slide {
        width: 33.333%;
    }
}

/* Navigation buttons */
.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-nav-btn:hover {
    background: rgba(248, 187, 208, 0.95);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn i {
    color: #8b6b73;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.carousel-nav-btn:hover i {
    color: white;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Custom indicators */
.carousel-indicators-custom {
    gap: 8px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 107, 115, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #8b6b73;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(139, 107, 115, 0.4);
}

.carousel-indicator:hover {
    background: rgba(139, 107, 115, 0.7);
    transform: scale(1.1);
}

/* Package card enhancements for carousel */
.packages-carousel .package-card {
    height: 100%;
    margin: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.packages-carousel .package-card:hover {
    transform: scale(1);
    box-shadow: 0 15px 35px rgba(139, 107, 115, 0.2);
}

/* Package card content structure */
.packages-carousel .package-card .stats-icon {
    flex-shrink: 0;
}

.packages-carousel .package-card .package-title {
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.packages-carousel .package-card .package-price {
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

.packages-carousel .package-card .package-savings {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.packages-carousel .package-card ul {
    flex-grow: 1;
    margin-bottom: 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.packages-carousel .package-card .btn {
    margin-top: auto;
    flex-shrink: 0;
    margin-bottom: 0;
}

/* Ensure equal height for all package cards */
.package-slide {
    display: flex;
}

.package-slide .package-card {
    width: 100%;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    .carousel-prev {
        left: -15px;
    }

    .carousel-next {
        right: -15px;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-nav-btn i {
        font-size: 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .carousel-nav-btn {
        background: rgba(255, 255, 255, 0.9);
    }

    .packages-carousel .package-card {
        transform: scale(1);
    }
}

/* Carousel animation states */
.packages-carousel-container.loading {
    opacity: 0.7;
}

.packages-carousel-container.loading .packages-carousel {
    pointer-events: none;
}
