@font-face {
    font-family: 'Sealight Whisper';
    src: url('../police/Sealight Whisper.woff2') format('woff2');
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    background-attachment: fixed;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: backgroundPulse 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.9;
        transform: scale(1.15) rotate(120deg);
    }
    66% {
        opacity: 0.8;
        transform: scale(1.1) rotate(240deg);
    }
}

.content-wrapper {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.navbar {
    background-color: transparent;
    border-bottom: 1px solid rgba(238, 164, 180, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 2px solid #EEA4B4;
    box-shadow: 0 4px 20px rgba(238, 164, 180, 0.2);
    padding: 10px 0;
}


.navbar-brand {
    font-family: 'Sealight Whisper', sans-serif;
    color: #FFFFFF !important;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #EEA4B4 0%, #B38CB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-shadow: 0 0 30px rgba(238, 164, 180, 0.3);
}

.navbar-brand:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(238, 164, 180, 0.6));
    animation: brandPulse 2s ease-in-out infinite;
}

@keyframes brandPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(238, 164, 180, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(238, 164, 180, 0.8));
    }
}

.nav-link {
    color: #FFFFFF !important;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EEA4B4, #B38CB4);
    transition: width 0.4s ease-in-out;
}

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


.nav-link:hover {
    color: #EEA4B4 !important;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(238, 164, 180, 0.5);
}

.nav-link.active {
    color: #EEA4B4 !important;
    text-shadow: 0 0 10px rgba(238, 164, 180, 0.4);
}

.nav-link.active::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(238, 164, 180, 0.6);
}

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(238, 164, 180, 0.25) 100%), 
                url('../img/hero-background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #FFFFFF;
    padding: 120px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(238, 164, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(179, 140, 180, 0.15) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .display-4 {
    font-weight: 700;
    text-shadow: 
        0 0 30px rgba(238, 164, 180, 0.5), 
        0 0 60px rgba(238, 164, 180, 0.3),
        0 0 90px rgba(179, 140, 180, 0.2);
    letter-spacing: 3px;
    animation: textGlow 3s ease-in-out infinite;
    background: linear-gradient(135deg, #FFFFFF 0%, #EEA4B4 50%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite, gradientShift 4s ease infinite;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(238, 164, 180, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(238, 164, 180, 0.8));
    }
}

.hero .lead {
    font-size: 1.4rem;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(238, 164, 180, 0.3);
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #EEA4B4 0%, #B38CB4 50%, #EEA4B4 100%);
    background-size: 200% auto;
    border: none;
    color: #000000 !important;
    padding: 16px 40px;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(238, 164, 180, 0.4),
        0 0 20px rgba(238, 164, 180, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    animation: gradientShift 3s ease infinite;
}

.btn-primary::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.6s ease;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

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

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 
        0 20px 50px rgba(238, 164, 180, 0.6),
        0 0 40px rgba(238, 164, 180, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: right center;
}

.btn-primary:active {
    transform: translateY(-4px) scale(1.05);
}

.btn-primary span {
    position: relative;
    z-index: 2;
}


.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(238, 164, 180, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(179, 140, 180, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Sealight Whisper', sans-serif;
    text-align: center;
    margin-bottom: 60px;
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #EEA4B4 0%, #B38CB4 50%, #EEA4B4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 0 40px rgba(238, 164, 180, 0.3);
    letter-spacing: 3px;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #EEA4B4, #B38CB4, #EEA4B4, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(238, 164, 180, 0.5);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.6;
        width: 150px;
    }
    50% {
        opacity: 1;
        width: 200px;
    }
}


.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #F8F9FA;
    padding: 50px 0 30px;
    text-align: center;
    border-top: 2px solid rgba(238, 164, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #EEA4B4, #B38CB4, #EEA4B4, transparent);
    box-shadow: 0 0 20px rgba(238, 164, 180, 0.5);
    animation: footerLineGlow 3s ease-in-out infinite;
}

@keyframes footerLineGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(238, 164, 180, 0.5);
        opacity: 0.8;
    }
    50% {
        box-shadow: 0 0 40px rgba(238, 164, 180, 0.8);
        opacity: 1;
    }
}

.card.border-secondary {
    border-color: #EEA4B4 !important;
    border-width: 2px !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(238, 164, 180, 0.08) 0%, rgba(179, 140, 180, 0.08) 100%) !important;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card.border-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 164, 180, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card.border-secondary:hover::before {
    opacity: 1;
}

.card.border-secondary:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(238, 164, 180, 0.4),
        0 0 50px rgba(238, 164, 180, 0.3),
        inset 0 0 30px rgba(238, 164, 180, 0.1);
    border-color: #B38CB4 !important;
}

.card.border-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 164, 180, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.card.border-secondary:hover::after {
    width: 200%;
    height: 200%;
}

.card.border-secondary .card-title {
    background: linear-gradient(135deg, #EEA4B4 0%, #B38CB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.card.border-secondary .fs-4 {
    background: linear-gradient(135deg, #EEA4B4 0%, #B38CB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(238, 164, 180, 0.5);
}

.boutique-icon {
    position: relative;
    display: inline-block;
}

.boutique-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #EEA4B4 0%, #B38CB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(238, 164, 180, 0.5));
    display: inline-block;
}

.card.border-secondary:hover .boutique-icon i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(238, 164, 180, 0.8));
}

.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

.image-gallery .card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(238, 164, 180, 0.3);
    background: linear-gradient(135deg, rgba(238, 164, 180, 0.05) 0%, rgba(179, 140, 180, 0.05) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.image-gallery .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 164, 180, 0.15) 0%, rgba(179, 140, 180, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 15px;
}

.image-gallery .card::after {
    content: '👁️ Voir en grand';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.image-gallery .card:hover::before {
    opacity: 1;
}

.image-gallery .card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.image-gallery .card:hover {
    transform: translateY(-20px) scale(1.05) rotate(1deg);
    border-color: #EEA4B4;
    box-shadow: 
        0 30px 70px rgba(238, 164, 180, 0.5),
        0 0 60px rgba(238, 164, 180, 0.4),
        inset 0 0 40px rgba(238, 164, 180, 0.1);
}

.image-gallery .card:nth-child(even):hover {
    transform: translateY(-20px) scale(1.05) rotate(-1deg);
}

.image-gallery .card-img-top {
    width: 500px;
    height: auto;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    display: block;
    width: 85%;
    max-width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(238, 164, 180, 0.3);
    border: 2px solid rgba(238, 164, 180, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.close {
    position: absolute;
    top: 25px;
    right: 45px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1051;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #EEA4B4;
    background: rgba(238, 164, 180, 0.2);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(238, 164, 180, 0.5);
}


.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(238, 164, 180, 0.3);
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(238, 164, 180, 0.3);
    color: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: #EEA4B4;
    color: #FFFFFF;
    box-shadow: 
        0 0 0 0.2rem rgba(238, 164, 180, 0.3),
        0 0 30px rgba(238, 164, 180, 0.2);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.form-label {
    color: #EEA4B4;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(238, 164, 180, 0.3);
    letter-spacing: 0.5px;
}

.spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

.footer {
    background-color: #000000;
    color: #F8F9FA;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(238, 164, 180, 0.5);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #EEA4B4;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 5px 10px;
    font-weight: 500;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EEA4B4, #B38CB4);
    transition: width 0.4s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: #B38CB4;
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(238, 164, 180, 0.5);
}

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

.social-links a {
    color: #EEA4B4;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(238, 164, 180, 0.1) 0%, rgba(179, 140, 180, 0.1) 100%);
    border: 2px solid rgba(238, 164, 180, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 164, 180, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-links a:hover::before {
    width: 100px;
    height: 100px;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    color: #B38CB4;
    border-color: #EEA4B4;
    box-shadow: 
        0 10px 30px rgba(238, 164, 180, 0.4),
        0 0 20px rgba(238, 164, 180, 0.3);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 40px 25px;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(238, 164, 180, 0.08) 0%, rgba(179, 140, 180, 0.08) 100%);
    border: 2px solid rgba(238, 164, 180, 0.3);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 164, 180, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::after {
    left: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 164, 180, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-18px) scale(1.03) rotate(1deg);
    background: linear-gradient(135deg, rgba(238, 164, 180, 0.18) 0%, rgba(179, 140, 180, 0.18) 100%);
    border-color: #EEA4B4;
    box-shadow: 
        0 25px 60px rgba(238, 164, 180, 0.4),
        0 0 50px rgba(238, 164, 180, 0.3),
        0 0 80px rgba(179, 140, 180, 0.2),
        inset 0 0 40px rgba(238, 164, 180, 0.15);
}

.service-card:nth-child(even):hover {
    transform: translateY(-18px) scale(1.03) rotate(-1deg);
}

.service-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 4rem;
    background: linear-gradient(135deg, #EEA4B4 0%, #B38CB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(238, 164, 180, 0.5));
}

.service-card:hover .service-icon i {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(238, 164, 180, 0.8));
}

.service-card h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero {
    will-change: transform;
}

a, button, .card, .service-card {
    will-change: transform;
}

@keyframes imageLoad {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

.image-gallery .card-img-top {
    animation: imageLoad 0.6s ease-out;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .navbar-brand {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .image-gallery .card-img-top {
        width: 100%;
        max-width: 500px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .hero .display-4::after {
        width: 60%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

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

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(238, 164, 180, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(238, 164, 180, 0.8), 0 0 60px rgba(238, 164, 180, 0.4);
    }
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.section {
    position: relative;
}

.content-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(238, 164, 180, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(179, 140, 180, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.content-wrapper > * {
    position: relative;
    z-index: 1;
}