/* General Styles */
:root {
    --primary-color: #e83e8c;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white-color: #ffffff;
    --gold-color: #d4af37;
    --silver-color: #C0C0C0;
    --rose-gold: #b76e79;
    --gold-gradient: linear-gradient(135deg, #f1c40f, #d4af37, #e6be6a);
    --silver-gradient: linear-gradient(135deg, #C0C0C0, #e0e0e0, #a9a9a9);
    --rose-gold-gradient: linear-gradient(135deg, #e8847d, #b76e79, #e6a0a6);
    --luxury-gradient: linear-gradient(135deg, #d4af37, #e83e8c, #C0C0C0);
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: #f9f9f9 !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition);
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--gold-gradient);
    color: var(--dark-color);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    animation: goldShadowPulse 3s infinite;
    color: #333;
}

@keyframes goldShadowPulse {
    0% {
        text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    }
    50% {
        text-shadow: 0 2px 20px rgba(212, 175, 55, 0.5);
    }
    100% {
        text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    }
}

.section-divider {
    height: 3px;
    width: 60px;
    background: var(--luxury-gradient);
    margin: 15px auto 0;
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: divider-animation 2s infinite;
}

@keyframes divider-animation {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animation Classes */
.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
    transition: opacity 0.5s ease;
}

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

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

.scale-up-hover {
    transition: transform 0.3s ease;
}

.scale-up-hover:hover {
    transform: scale(1.05);
}

.shake-hover:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-5px);
    }
    40%, 80% {
        transform: translateX(5px);
    }
}

.pulse-hover:hover {
    animation: pulse 1s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Navbar Styles */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--white-color);
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 55px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar-scrolled {
    background: linear-gradient(to right, rgba(240, 41, 180, 0.9), rgba(212, 175, 55, 0.8));
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link {
    color: var(--white-color);
}

.navbar-scrolled .navbar-brand img {
    height: 55px;
}

.nav-link {
    color: var(--white-color);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.8);
}

.video-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.gradient-overlay {
    background: linear-gradient(45deg, rgba(232, 62, 140, 0.7), rgba(0, 0, 0, 0.4));
}

.pattern-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e83e8c' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-text {
    position: absolute;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white-color);
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .hero-text {
        transform: translate(-50%, -50%);
        max-width: 80%;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--luxury-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 62, 140, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(232, 62, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 62, 140, 0);
    }
}

.animated-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: heading-shadow 8s infinite alternate;
    letter-spacing: 2px;
    width: 100%;
    display: inline-block;
}

@keyframes heading-shadow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        transform: translateY(0);
    }
    50% {
        text-shadow: 0 0 10px rgba(232, 62, 140, 0.7), 0 0 20px rgba(232, 62, 140, 0.5);
        transform: translateY(-5px);
    }
    100% {
        text-shadow: 0 0 15px rgba(232, 62, 140, 0.8), 0 0 30px rgba(232, 62, 140, 0.6);
        transform: translateY(0);
    }
}

.animated-subheading {
    font-size: 20px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fade-in 1s forwards 0.5s;
    width: 100%;
    display: inline-block;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 30px;
    opacity: 0;
    animation: fade-in 1s forwards 0.8s;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background-color: rgba(232, 62, 140, 0.3);
    transform: translateY(-5px);
}

.highlight-item i {
    margin-right: 10px;
    font-size: 16px;
    color: var(--primary-color);
}

.glow-button {
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fade-in 1s forwards 1.1s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: button-shine 3s infinite;
    z-index: -1;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white-color);
    transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.2);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white-color);
    opacity: 0.7;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.5);
}

/* About Section Styles */
#hakkimizda {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    overflow: hidden;
}

#hakkimizda::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e83e8c' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.animated-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.03), rgba(232, 62, 140, 0.08));
    z-index: 0;
    animation: pulse-circle 10s infinite alternate;
}

.circle-1 {
    top: -150px;
    left: -100px;
}

.circle-2 {
    bottom: -100px;
    right: -150px;
    width: 250px;
    height: 250px;
    animation-delay: 3s;
}

@keyframes pulse-circle {
    0% {
        transform: scale(1);
        opacity: 0.03;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.08;
    }
}

.about-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.3), rgba(232, 62, 140, 0));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.75s ease;
}

.about-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.15);
}

.about-img:hover::before {
    opacity: 1;
}

.about-img:hover::after {
    left: 125%;
    transition: left 0.75s ease;
}

.about-img img {
    width: 100%;
    transition: transform 0.75s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transform: rotate(10deg);
    transition: all 0.3s ease;
}

.about-img:hover .experience-badge {
    transform: rotate(0) scale(1.1);
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .years-text {
    font-size: 14px;
}

.about-content {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.about-content:hover h3::after {
    width: 100%;
}

.about-content p {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-content p::first-letter {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: var(--silver-gradient);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.feature-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    background: var(--gold-gradient);
    color: var(--dark-color);
    transform: rotateY(360deg);
}

.feature-item span {
    font-weight: 500;
    font-size: 15px;
}

@media (max-width: 767px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Services Section Styles */
#hizmetlerimiz {
    background: linear-gradient(135deg, #fcfcfc 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

#hizmetlerimiz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(232, 62, 140, 0.03) 0%, transparent 60%),
                     radial-gradient(circle at 90% 90%, rgba(232, 62, 140, 0.03) 0%, transparent 60%);
    z-index: 0;
}

.services-container {
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    perspective: 1200px;
    transform-style: preserve-3d;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover efektini yalnızca masaüstü cihazlarda göster */
@media (min-width: 992px) {
    .service-card:hover .service-card-inner {
        transform: rotateY(180deg);
    }
}

/* Mobil cihazlarda hizmet kartı davranışını değiştir */
@media (max-width: 991px) {
    .service-card {
        height: auto;
        min-height: 420px;
    }
    
    .service-front, .service-back {
        position: relative;
        height: auto;
        min-height: 200px;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
    }
    
    .service-back {
        transform: rotateY(0);
        margin-top: 20px;
        display: block;
    }
    
    .service-card-inner {
        transform-style: flat;
    }
}

.service-front, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.service-front {
    overflow: hidden;
    background-color: var(--white-color);
}

.service-back {
    transform: rotateY(180deg);
    background: var(--luxury-gradient);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.service-img {
    position: relative;
    height: 60%;
    overflow: hidden;
}

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 1;
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    z-index: 2;
    background-color: transparent;
}

.service-icon-wrapper {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 3;
}

.service-icon {
    color: white;
    font-size: 24px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.service-back h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.service-back p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-details-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
    z-index: 10;
    position: relative;
    border: 2px solid transparent;
}

.service-details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: var(--gold-gradient);
    color: #333;
    border-color: transparent;
}

/* Masaüstünde ön yüze de buton ekle */
@media (min-width: 992px) {
    .service-front .service-details-btn {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-color);
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 10;
    }
    
    .service-card:hover .service-front .service-details-btn {
        opacity: 1;
        transform: translateX(-50%) translateY(-10px);
    }
}

.service-back-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.8;
    animation: floatIcon 3s ease-in-out infinite;
}

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

/* Hexagon Shape Decorations */
.hexagon-decoration {
    position: absolute;
    width: 100px;
    height: 115px;
    background-color: rgba(232, 62, 140, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
    animation: rotateHex 20s linear infinite;
}

.hex-1 {
    top: 5%;
    left: 5%;
    width: 150px;
    height: 173px;
}

.hex-2 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 230px;
}

@keyframes rotateHex {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Why Us Section Styles */
.why-us-card {
    background-color: var(--white-color);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--luxury-gradient);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.icon-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: var(--silver-gradient);
    margin: 0 auto 20px;
    color: var(--dark-color);
    font-size: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(232, 62, 140, 0.3);
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.why-us-card:hover .icon-box {
    background: var(--gold-gradient);
    color: var(--dark-color);
    transform: rotateY(360deg);
    transition: transform 1s ease, background 0.5s ease, color 0.5s ease;
}

.why-us-card:hover .icon-box::before {
    transform: scale(1.5);
    opacity: 0;
}

.why-us-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.stats-container {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 15px;
    margin-bottom: 0;
}

.why-us-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial Section Styles */
.testimonial-swiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.client-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 5px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                var(--gold-gradient) border-box;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .client-img {
    transform: scale(1.1);
    background: linear-gradient(#fff, #fff) padding-box,
                var(--luxury-gradient) border-box;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.rating i {
    margin: 0 2px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .rating i {
    transform: scale(1.2);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--primary-color);
}

/* Contact Section Styles */
.contact-info-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

.contact-info-card:hover .contact-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: all 0.3s ease;
    text-align: center;
}

.image-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.contact-details {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-details .lead {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.fancy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.fancy-list li {
    display: flex;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.fancy-list li:hover {
    transform: translateX(10px);
}

.fancy-list i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--primary-color);
    text-align: center;
    font-size: 16px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.fancy-list li:hover i {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: rotate(360deg);
}

.cta-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.cta-buttons .btn {
    flex: 1;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background-color: transparent;
    color: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links .tiktok {
    background-color: #000000;
}

.social-links .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-links .twitter {
    background-color: #1da1f2;
}

.social-links .whatsapp {
    background-color: #25D366;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, rgba(240, 41, 180, 0.9), rgba(212, 175, 55, 0.8));
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.8), rgba(240, 41, 180, 0.9), rgba(212, 175, 55, 0.8));
    background-size: 200% 100%;
    animation: gradient-move 5s infinite linear;
}

@keyframes gradient-move {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Glass effect for footer sections */
.footer-logo-container, .footer-nav, .footer-contact {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 430px;
}

/* Additional darker background specifically for nav and contact to improve readability */
.footer-logo-container, .footer-nav, .footer-contact {
    background: rgba(0, 0, 0, 0.5);
}

.footer-logo-container:hover, .footer-nav:hover, .footer-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.2);
}

.footer-nav h3,
.footer-contact h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background: initial;
    display: inline-block;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHg9IjAiIHk9IjAiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CiAgICAgIDxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDIpIiAvPgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIiAvPgo8L3N2Zz4=');
    opacity: 0.5;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(232, 62, 140, 0.3);
}

footer p {
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

footer .footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
    color: #e1e1e1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.footer-logo {
    text-align: center;
    padding: 25px;
    margin-bottom: 0;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s ease;
}


.footer-description {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.randevu-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--gold-color));
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.randevu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.5);
    color: #fff;
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer-logo-img {
    width: 400px;
    height: 100px;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 8px rgba(232, 62, 140, 0.2));
}

.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 15px rgba(232, 62, 140, 0.4));
    transform: scale(1.05);
}

.footer-logo .tagline {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-top: 15px;
    text-shadow: 0 0 5px rgba(232, 62, 140, 0.5);
}

.footer-nav h3,
.footer-contact h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background: initial;
    display: inline-block;
}

.footer-nav h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--gold-color));
    transition: width 0.3s ease;
}

.footer-nav:hover h3::after,
.footer-contact:hover h3::after {
    width: 100px;
}

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

.footer-menu li {
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 5px;
}

.footer-menu li:hover {
    transform: translateX(10px);
}

.footer-menu li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-menu li:hover::before {
    width: 10px;
}

.footer-menu li a {
    color: #e1e1e1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-menu li a i {
    margin-right: 10px;
    font-size: 14px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--gold-color);
    text-shadow: 0 0 5px rgba(232, 62, 140, 0.3);
}

.footer-menu li a:hover i {
    transform: rotate(90deg);
    color: var(--gold-color);
}

.quick-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.quick-contact p:hover {
    transform: translateX(5px);
}

.quick-contact p i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--gold-color));
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(232, 62, 140, 0.1);
}

.quick-contact p:hover i {
    background: linear-gradient(45deg, var(--gold-color), var(--primary-color));
    color: #fff;
    transform: rotate(360deg);
    box-shadow: 0 0 15px rgba(232, 62, 140, 0.3);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.footer-social a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    top: 0;
    left: 0;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.footer-social a:hover::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.footer-social a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
}

.footer-social .tiktok {
    background: linear-gradient(45deg, #000000, #000000);
    border-color: #000000;
}

.footer-social .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #bc1888;
}


.footer-social .whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-color: #25D366;
}

.footer-social a:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 0 5px;
}

.copyright a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-color);
    transition: width 0.3s ease;
}

.copyright a:hover {
    color: var(--gold-color);
}

.copyright a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    z-index: 99;
    display: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 62, 140, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(232, 62, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 62, 140, 0);
    }
}

.back-to-top:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.back-to-top.active {
    display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white-color);
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse .nav-link {
        color: var(--dark-color);
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .why-us-img {
        margin-top: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .footer-about, .footer-links {
        margin-bottom: 30px;
    }
}

/* Harita özellikleri için ek stil */
.contact-image iframe {
    display: block;
    width: 100%;
    min-height: 350px;
    border: 0;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.contact-image:hover iframe {
    filter: grayscale(0%);
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-button span {
    font-size: 18px;
    font-weight: 600;
}

.whatsapp-button i {
    font-size: 32px;
    margin-right: 10px;
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-widget.active .whatsapp-popup {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-header {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header-info {
    display: flex;
    align-items: center;
}

.whatsapp-avatar {
    width: 55px ;
    height: 55px;
    margin-right: 10px;
}

.whatsapp-header-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.online-status {
    font-size: 12px;
    margin: 0;
    display: flex;
    align-items: center;
}

.online-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
}

.whatsapp-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.whatsapp-popup-body {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CiAgICAgICAgICAgIDxyZWN0IHdpZHRoPSI2IiBoZWlnaHQ9IjYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsIDApIiBmaWxsPSJyZ2JhKDIyMSwgMjUyLCAyMjMsIDAuNSkiPjwvcmVjdD4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgZmlsbD0idXJsKCNwYXR0ZXJuKSI+PC9yZWN0Pgo8L3N2Zz4=');
    padding: 15px;
    height: 250px;
    overflow-y: auto;
}

.whatsapp-message {
    margin-bottom: 15px;
    position: relative;
    max-width: 80%;
}

.whatsapp-message p {
    margin: 0;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.whatsapp-time {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    opacity: 0.7;
    text-align: right;
}

.whatsapp-message.received {
    align-self: flex-start;
}

.whatsapp-message.received p {
    background-color: white;
    color: #333;
    border-top-left-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.whatsapp-message.sent {
    align-self: flex-end;
    margin-left: auto;
}

.whatsapp-message.sent p {
    background-color: #DCF8C6;
    color: #333;
    border-top-right-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.whatsapp-popup-footer {
    padding: 10px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-input {
    flex: 1;
    border: none;
    background-color: white;
    border-radius: 20px;
    padding: 10px 15px;
    margin-right: 10px;
    font-size: 14px;
    outline: none;
}

.whatsapp-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.whatsapp-send-btn:hover {
    background-color: #22c55e;
}

@media (max-width: 576px) {
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
        background: #25D366;
    }
    
    .whatsapp-button i {
        margin-right: 0;
    }
    
    .whatsapp-popup {
        width: 300px;
        right: 0;
    }
}

/* Luxury Buttons */
.btn-gold {
    background: var(--gold-gradient);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    color: #333;
}

.btn-silver {
    background: var(--silver-gradient);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.3);
}

.btn-silver:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.5);
    color: #333;
}

.btn-rose-gold {
    background: var(--rose-gold-gradient);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.3);
}

.btn-rose-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.5);
    color: white;
}

/* Gold Border Elements */
.gold-border {
    border: 2px solid var(--gold-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.silver-border {
    border: 2px solid var(--silver-color);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.2);
}

/* Gold Text */
.gold-text {
    color: var(--gold-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.silver-text {
    color: var(--silver-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Gold Underline Effect */
.gold-underline {
    position: relative;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.gold-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Gold animated shadow for section headers */
.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    animation: goldShadowPulse 3s infinite;
    color: #333;
}

@keyframes goldShadowPulse {
    0% {
        text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    }
    50% {
        text-shadow: 0 2px 20px rgba(212, 175, 55, 0.5);
    }
    100% {
        text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    }
}

/* Services Slider Styles */
.services-swiper {
    padding: 20px 0 50px;
    position: relative;
}

.services-swiper .swiper-slide {
    height: 400px;
}

.services-swiper .service-card {
    height: 100%;
    margin-bottom: 0;
}

.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: var(--gold-gradient);
    color: var(--white-color);
    transform: scale(1.1);
}

.services-swiper .swiper-button-next:after,
.services-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.services-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
    background: var(--gold-gradient);
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .services-swiper {
        padding: 0 0 40px;
    }
} 

/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    left: 30px;
    bottom: 0;
    transform: translateX(0);
    z-index: 999;
    transition: all 0.4s ease;
    opacity: 1;
}

.social-toggle {
    background: linear-gradient(45deg, #d4af37, #e83e8c, #d4af37);
    background-size: 200% 200%;
    animation: gradientAnimation 5s ease infinite, pulse 2s infinite;
    color: #fff;
    padding: 12px 18px;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    overflow: visible;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    width: auto;
    white-space: nowrap;
}

.social-toggle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.social-toggle-text {
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.social-toggle i {
    transition: transform 0.3s ease;
    font-size: 18px;
    margin-left: 5px;
    filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.3));
    z-index: 2;
}

.social-sidebar.active .social-toggle i {
    transform: rotate(180deg);
}

.social-toggle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6), 0 0 15px rgba(232, 62, 140, 0.4);
}

.social-toggle:hover .social-icon-left {
    animation: beatIcon 0.5s ease infinite alternate;
}

@keyframes beatIcon {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.social-menu {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(105%);
    opacity: 0;
    visibility: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: none;
}

.social-sidebar.active .social-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.social-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-item:last-child {
    border-bottom: none;
}

.social-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #d4af37, #e83e8c);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.social-item:hover:before {
    transform: scaleY(1);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    z-index: 2;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-item:hover .social-icon {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.social-text {
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    flex: 1;
    white-space: nowrap;
}

.social-item:hover .social-text {
    transform: translateX(8px);
}

.social-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.social-item:hover .social-hover-effect {
    transform: translateX(0);
}

/* Social Menu Header */
.social-menu:before {
    content: 'Takip Et & Bağlantı Kur';
    display: block;
    padding: 15px 20px;
    background: linear-gradient(45deg, #d4af37, #e83e8c);
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Item Colors */
.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram .social-hover-effect {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0.1;
}

.instagram:hover .social-text {
    color: #dc2743;
}

.whatsapp .social-icon {
    background: #25d366;
    color: white;
}

.whatsapp .social-hover-effect {
    background: #25d366;
    opacity: 0.1;
}

.whatsapp:hover .social-text {
    color: #25d366;
}

.youtube .social-icon {
    background: #FF0000;
    color: white;
}

.youtube .social-hover-effect {
    background: #FF0000;
    opacity: 0.1;
}

.youtube:hover .social-text {
    color: #FF0000;
}

.tiktok .social-icon {
    background: #000000;
    color: white;
}

.tiktok .social-hover-effect {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    opacity: 0.1;
}

.tiktok:hover .social-text {
    color: #000000;
}

/* Social Sidebar Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.social-sidebar:not(.active) .social-toggle {
    animation: pulse 2s infinite;
}

.social-icon-left {
    font-size: 20px;
    margin-right: 8px;
    animation: spin 6s linear infinite;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.3));
    z-index: 2;
}

/* Floating Particles */
.social-sidebar:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 15%;
    width: 12px;
    height: 12px;
    background-color: #e83e8c;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(232, 62, 140, 0.7);
    animation: floatParticle 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.social-sidebar:after {
    content: '';
    position: absolute;
    top: -15px;
    right: 15%;
    width: 15px;
    height: 15px;
    background-color: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    animation: floatParticle 3s ease-in-out infinite 1s;
    z-index: 1;
    pointer-events: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.8;
    }
    50% {
        transform: translate(5px, -10px);
        opacity: 0.5;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-toggle-text {
        font-size: 12px;
    }
    
    .social-toggle {
        padding: 8px 12px;
    }
    
    .social-sidebar {
        left: 15px;
        bottom: 0;
    }
}

.social-count {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #f09433, #dc2743);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.social-badge {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.social-item:hover .social-count,
.social-item:hover .social-badge {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp .social-badge {
    background-color: #25d366;
}

.new-badge {
    background: linear-gradient(45deg, #e83e8c, #ff6a95);
}

.trend-badge {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
}

/* Enhanced Menu Animation */
.social-menu {
    transform: translateY(105%);
    width: 100%;
}

.social-sidebar.active .social-menu {
    animation: bounceMenu 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounceMenu {
    0% {
        transform: translateY(105%);
    }
    70% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(0);
        width: 100%;
    }
}

/* Additional Footer Styles */
.footer-slogan {
    font-size: 16px;
    color: transparent;
    font-style: italic;
    margin-top: 10px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e1e1e1;
}

.footer-appointment {
    margin-top: 25px;
    margin-bottom: 30px;
}

.footer-cta {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.footer-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-newsletter {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.footer-newsletter:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-newsletter h3 {
    margin-bottom: 15px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 10px;
}

.newsletter-form .form-control {
    height: 48px;
    padding: 10px 15px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    padding-right: 50px;
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.2);
    border-color: rgba(232, 62, 140, 0.5);
    outline: none;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--gold-color));
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05) rotate(10deg);
    box-shadow: 0 0 15px rgba(232, 62, 140, 0.3);
}

.newsletter-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover i {
    transform: translateX(3px);
}

.newsletter-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    width: 80%;
    max-width: 400px;
}

.accent-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.accent-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    margin: 0 15px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.accent-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: pulse-accent 2s infinite ease-in-out;
}

@keyframes pulse-accent {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.footer-cta i {
    margin-right: 5px;
    transform: translateY(1px);
}

/* Media Queries for Footer */
@media (max-width: 991px) {
    .footer-nav, .footer-contact, .footer-newsletter {
        margin-top: 30px;
    }
    
    .footer-accent {
        margin: 20px auto 0;
        width: 90%;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 40px 0 0;
    }
    
    .footer-logo-img {
        width: 300px;
        height: 80px;
    }
    
    .footer-slogan {
        font-size: 14px;
    }
    
    .footer-accent {
        width: 95%;
    }
    
    .accent-dot {
        width: 8px;
        height: 8px;
        margin: 0 10px;
    }
    
    .accent-dot::before {
        width: 16px;
        height: 16px;
        top: -4px;
        left: -4px;
    }
}

.newsletter-success {
    background-color: rgba(40, 167, 69, 0.15);
    border-left: 3px solid #28a745;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    animation: fadeInUp 0.5s ease;
}

.newsletter-success i {
    color: #28a745;
    font-size: 18px;
    margin-right: 10px;
}

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

.footer-nav h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--gold-color));
    transition: width 0.3s ease;
}

.footer-menu li a {
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-menu li a:hover {
    color: var(--gold-color);
    text-shadow: 0 0 5px rgba(232, 62, 140, 0.5);
}

.footer-menu li a i {
    margin-right: 10px;
    font-size: 14px;
    background: linear-gradient(45deg, var(--primary-color), var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.footer-menu li a:hover i {
    transform: rotate(90deg);
    background: linear-gradient(45deg, #fff, var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-menu li a:hover i {
    color: #fff;
}

.quick-contact p i {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.quick-contact p:hover i {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-social .tiktok:hover {
    background-color: #bc1888;
}

.footer-social .instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social .whatsapp:hover {
    background-color: #25D366;
}

.footer-social .tiktok:hover {
    background: linear-gradient(45deg, #000, #69C9D0);
}

.footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.copyright a {
    color: #fff;
    font-weight: 500;
}

.footer-accent {
    margin-top: 40px;
}

.accent-line {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.accent-dot {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Add sparkle animation to footer */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.footer-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
    animation: sparkle 3s infinite;
    pointer-events: none;
    z-index: 1;
}

/* Improve the accent dot styling to make it more visible */
.accent-dot {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}