/* Florist Website - Fancy Frontend CSS */
/* Color Scheme: Purple, Green, Rose Red */

:root {
    --primary-purple: #8B5CF6;
    --deep-purple: #6D28D9;
    --light-purple: #A78BFA;
    --rose-red: #E11D48;
    --deep-rose: #BE123C;
    --light-rose: #FB7185;
    --green: #10B981;
    --deep-green: #059669;
    --light-green: #34D399;
    --dark: #1F2937;
    --light: #F9FAFB;
    --gradient: linear-gradient(135deg, var(--primary-purple) 0%, var(--rose-red) 100%);
    --gradient-green: linear-gradient(135deg, var(--green) 0%, var(--deep-green) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background: rgba(139, 92, 246, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(109, 40, 217, 0.98) !important;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2rem;
    color: var(--light-green);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 80%;
}

.btn-gradient {
    background: var(--gradient);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.6);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Carousel Indicators (Dots) */
.carousel-indicators {
    z-index: 10;
    margin-bottom: 30px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.3);
    border-width: 3px;
}

/* Carousel Controls (Arrows) */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 65%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.85) 0%, rgba(225, 29, 72, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    font-family: 'Pacifico', cursive;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s ease;
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-flower {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.flower-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.flower-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.flower-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.title-decoration .line {
    width: 80px;
    height: 2px;
    background: var(--gradient);
}

.title-decoration i {
    font-size: 1.5rem;
    color: var(--rose-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
}

.about-content-fancy {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

/* Services Section */
.services-section {
    background: white;
}

.service-card-fancy {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card-fancy:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-fancy:hover .service-image {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(225, 29, 72, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-fancy:hover .service-overlay {
    opacity: 1;
}

.btn-view-service {
    background: white;
    color: var(--primary-purple);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: scale(0);
}

.service-card-fancy:hover .btn-view-service {
    transform: scale(1);
}

.btn-view-service:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-description {
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-read-more {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateX(5px);
}

/* Service Modal */
.service-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.btn-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--rose-red);
    font-size: 1.3rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-close-modal:hover {
    background: var(--rose-red);
    color: white;
    transform: rotate(90deg);
}

.modal-image {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.modal-content-inner {
    padding: 50px;
}

.modal-title-fancy {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
    font-weight: 600;
}

.modal-description {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Dancing Script', cursive;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.btn-light-fancy {
    background: white;
    color: var(--primary-purple);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-light-fancy:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--rose-red);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #ECFDF5 0%, #F3E8FF 100%);
}

.gallery-item-fancy {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.gallery-item-fancy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-fancy:hover img {
    transform: scale(1.1);
}

.gallery-overlay-fancy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.95), rgba(16, 185, 129, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-fancy:hover .gallery-overlay-fancy {
    opacity: 1;
}

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

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

.gallery-tag {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-gallery-view {
    background: var(--gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-gallery-view:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Reviews Section */
.reviews-section {
    background: white;
}

.reviews-wrapper {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.btn-outline-gradient {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #F3E8FF 0%, #ECFDF5 100%);
    padding-bottom: 0 !important;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.2);
}

/* Map section - no bottom padding to connect with footer */
.map-section {
    margin-bottom: 0 !important;
}

.form-control-fancy {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F9FAFB;
    width: 100%;
}

.form-control-fancy:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: white;
    outline: none;
}

.contact-form-fancy .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: block;
}

.contact-info-wrapper {
    padding: 30px;
}

.contact-info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p, .contact-details a {
    color: #6B7280;
    margin: 0;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-purple);
}

.contact-social {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-link-fancy {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-fancy:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    color: white;
}

/* Footer */
.footer-fancy {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--deep-rose) 100%);
    color: white;
    position: relative;
    padding-top: 150px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

.footer-wave .shape-fill {
    fill: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand .brand-icon {
    font-size: 2.5rem;
    color: var(--light-green);
}

.footer-brand h4 {
    margin: 0;
    font-size: 1.8rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    color: var(--light-green);
    font-size: 1.2rem;
    width: 25px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--light-green);
    transform: translateY(-5px);
    color: white;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    border: none;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.6);
}

.scroll-to-top.show {
    display: flex !important;
}

/* Mobile adjustments for scroll-to-top */
@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Prevent any element from causing horizontal scroll on mobile */
    body {
        max-width: 100%;
    }
    
    .container, .container-fluid {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Gallery Page */
.page-header-fancy {
    height: 400px;
    background: var(--gradient);
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 76px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.page-header-title {
    font-size: 4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Pacifico', cursive;
}

.page-header-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: white;
    justify-content: center;
}

.page-header-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header-breadcrumb a:hover {
    color: var(--light-green);
}

.gallery-main {
    padding: 80px 0;
    background: linear-gradient(135deg, #ECFDF5 0%, #F3E8FF 100%);
}

.gallery-filters-fancy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.filter-btn-fancy {
    padding: 12px 30px;
    border-radius: 50px;
    background: white;
    border: 2px solid #E5E7EB;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-btn-fancy:hover, .filter-btn-fancy.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.gallery-category-title {
    color: var(--primary-purple);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
}

.gallery-item-full-fancy {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.gallery-item-full-fancy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-full-fancy:hover img {
    transform: scale(1.15);
}

.gallery-overlay-full-fancy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.95), rgba(16, 185, 129, 0.85));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-full-fancy:hover .gallery-overlay-full-fancy {
    opacity: 1;
}

.gallery-info-fancy {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item-full-fancy:hover .gallery-info-fancy {
    transform: translateY(0);
}

.gallery-tag-fancy {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-zoom-fancy {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--rose-red);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-zoom-fancy:hover {
    transform: scale(1.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Image Modal */
.image-modal-fancy .modal-content {
    background: transparent;
    border: none;
}

.btn-close-modal-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--rose-red);
    font-size: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-close-modal-image:hover {
    background: var(--rose-red);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.modal-image-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.modal-tag {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Alerts */
.alert-info-fancy {
    background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 100%);
    border: none;
    border-radius: 15px;
    padding: 50px;
    color: var(--dark);
}

.alert-success-fancy {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border: none;
    border-radius: 12px;
    padding: 20px;
    color: var(--deep-green);
}

.alert-danger-fancy {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: none;
    border-radius: 12px;
    padding: 20px;
    color: var(--deep-rose);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .page-header-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .footer-fancy {
        padding-top: 100px;
    }
    
    /* Mobile nav brand - reduce size to fit */
    .brand-text {
        font-size: 1.3rem;
    }
    
    .brand-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Move hero content up on mobile to avoid arrow overlap */
    .hero-content {
        margin-top: -120px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-indicators {
        margin-bottom: 15px;
    }
}

/* Gallery Modal Full Screen */
.modal-fullscreen .modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: none;
}

.modal-fullscreen .modal-body {
    height: 100vh;
}

.gallery-modal-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.btn-close-fancy {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--rose-red);
    font-size: 1.5rem;
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-close-fancy:hover {
    background: var(--rose-red);
    color: white;
    transform: rotate(90deg);
}

.gallery-modal-tag {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

/* Gallery Navigation Arrows */
.gallery-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
}

.gallery-nav-prev {
    left: 30px;
}

.gallery-nav-next {
    right: 30px;
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    color: white;
}

@media (max-width: 767px) {
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .gallery-nav-prev {
        left: 15px;
    }
    
    .gallery-nav-next {
        right: 15px;
    }
}
