/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
    min-height: 100vh;
    background: #fff;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: rgba(77,93,107,0.35);
    pointer-events: none;
}

main, .about-modern, #urunler.products, .contact, footer {
    position: relative;
    z-index: 1;
}

/* Animasyon Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

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

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Header ve Navigasyon */
header {
    background: #4d5d6b;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease-out;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.logo h1 {
    color: #e91e63;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e91e63, transparent);
    animation: shimmer 2s infinite linear;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e91e63;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #e91e63;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #e91e63;
    position: relative;
}

/* Hero Bölümü */
#hero {
    background-color: #cad5e0;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(52, 48, 49, 0.3), transparent);
    animation: pulse 3s infinite;
}

.hero-content {
    max-width: 1600px;
    width: 100%;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-slogan {
    display: inline-block;
    font-size: 3rem;
    font-weight: bold;
    color: #e9d97a;
    text-shadow: 0 4px 24px #4d5d6b, 0 1px 0 #fff;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #e9d97a 40%, #fff8dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sloganGlow 2.5s ease-in-out infinite alternate;
    margin-bottom: 3rem;
}

@keyframes sloganGlow {
    0% { text-shadow: 0 4px 24px #4d5d6b, 0 1px 0 #fff; }
    100% { text-shadow: 0 8px 32px #e9d97a, 0 2px 4px #fff; }
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    font-size: 2.5rem;
}

.hero-icons span {
    animation: float 3s infinite ease-in-out;
}

.hero-icons span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-icons span:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-icons span:nth-child(4) {
    animation-delay: 0.6s;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #4d5d6b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 2rem;
    transition: background 0.3s, color 0.3s;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

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

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

.cta-button:hover {
    background-color: #e9d97a;
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233,30,99,0.3);
}

/* Ürünler Bölümü */
.products {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: #e9ecf3;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(77,93,107,0.07);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #4d5d6b;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e91e63, transparent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card h3 {
    padding: 1rem;
    color: #333;
    transition: color 0.3s ease;
    text-align: center;
    font-size: 1.5rem;
}

.product-card:hover h3 {
    color: #e91e63;
}

.flower-info {
    padding: 1rem;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 0 0 10px 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.product-card.active .flower-info {
    max-height: 500px;
}

.flower-info p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.flower-info ul {
    list-style: none;
    margin-bottom: 1rem;
}

.flower-info ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.flower-info ul li:last-child {
    border-bottom: none;
}

.care-info {
    background: rgba(233, 30, 99, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-style: italic;
}

.info-button {
    width: 100%;
    padding: 1rem;
    background-color: #4d5d6b;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

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

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

.info-button:hover {
    background-color: #e9d97a;
    color: #222;
}

.info-button.active {
    background-color: #c2185b;
}

/* Animasyon için JavaScript ekleyelim */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flower-info.active {
    animation: slideDown 0.5s ease-out;
}

/* Hakkımızda Bölümü */
.about {
    background-color: #f9f9f9;
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233,30,99,0.1), transparent);
    animation: float 6s infinite ease-in-out;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    animation: fadeIn 1s ease-out;
}

/* Hakkımızda Bölümü Gelişmiş */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.about-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(233,30,99,0.10);
}

.about-info {
    flex: 1;
    min-width: 250px;
}

.about-info p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-icons {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about-icons li {
    font-size: 1.1rem;
    color: #e91e63;
    background: #fff8dc;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(233,30,99,0.07);
    margin-bottom: 0.5rem;
}

.about-icons i {
    font-size: 1.3rem;
}

.about-gallery {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.about-gallery img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    transition: transform 0.3s;
}

.about-gallery img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(233,30,99,0.18);
}

/* İletişim Bölümü */
.contact {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: #e9ecf3;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(77,93,107,0.07);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.info-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.info-item i {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 1rem;
    animation: float 3s infinite ease-in-out;
}

/* Footer */
footer {
    background-color: #e9ecf3;
    color: #4d5d6b;
    padding: 3rem 5% 1rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e91e63, transparent);
    animation: shimmer 2s infinite linear;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}                               

.footer-section h3 {
    margin-bottom: 1rem;
    color: #e91e63;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e91e63;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #4d5d6b;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: float 3s infinite ease-in-out;
}

.social-links a:hover {
    color: #e91e63;
    transform: translateY(-5px) scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeIn 1s ease-out;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Sayfa Geçiş Efektleri */
.page-transition {
    position: relative;
    min-height: 100vh;
}

.page-transition-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #4d5d6b;
    opacity: 0;
    pointer-events: none;
    z-index: 2000;
    transition: opacity 0.7s;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Özellikler Bölümü */
.features {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
    animation: float 3s infinite ease-in-out;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
}

/* Sayfa Yükleme Animasyonu */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    animation: pageLoad 1.5s ease-out;
}

/* Logo Link Stili */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

.logo-link h1 {
    margin: 0;
    transition: color 0.3s ease;
}

.logo-link:hover h1 {
    color: #c2185b;
}

/* Moon Box Logo ve Başlık */
.moon-logo svg {
    display: block;
    height: 48px;
    width: 48px;
}

.moon-title {
    font-size: 2rem;
    font-weight: bold;
    color: #4d5d6b;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #e91e63;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background: #4d5d6b;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Modern Hakkımızda Bölümü */
.about-modern {
    background: linear-gradient(120deg, #fff8dc 60%, #ffe3ef 100%);
    padding: 5rem 0 3rem 0;
    margin: 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero h2 {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.about-hero p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem auto;
}

.about-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(233,30,99,0.10);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(233,30,99,0.18);
}

.about-card i {
    font-size: 2.2rem;
    color: #e91e63;
    margin-bottom: 0.7rem;
}

.about-card h3 {
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.about-card p {
    color: #666;
    font-size: 1rem;
}

.about-gallery-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.about-gallery-modern img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(233,30,99,0.13);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.about-gallery-modern img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(233,30,99,0.22);
}

.moonbox-logo-img {
    height: 56px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 12px #ffe3b3);
    margin-right: 10px;
    border-radius: 12px;
    background: #222;
}

/* Remove garden theme and decorative icon styles */
.garden-cloud, .garden-bird, .garden-branch, .garden-flower, .urunler-bg-icon, .urunler-bg-bird {
    display: none !important;
}

#urunler.products {
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #fdf6e3 60%, #e0f7fa 100%);
    border-radius: 32px;
    box-shadow: 0 4px 32px rgba(233,30,99,0.07);
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}                                               

.slogan-grey {
    color: #4d5d6b;
    font-weight: 700;
    animation: sloganGreyAnim 2.5s infinite alternate;
}
.slogan-white {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 16px #e9d97a, 0 1px 0 #4d5d6b;
    animation: sloganWhiteAnim 2.5s infinite alternate;
}
@keyframes sloganGreyAnim {
    0% { letter-spacing: 0.5px; filter: brightness(1); }
    100% { letter-spacing: 2px; filter: brightness(1.2); }
}
@keyframes sloganWhiteAnim {
    0% { text-shadow: 0 0 16px #e9d97a, 0 1px 0 #4d5d6b; }
    100% { text-shadow: 0 0 32px #fff, 0 2px 4px #e9d97a; }
}

.about-gallery-modern.single-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}
.about-gallery-modern.single-image img {
    width: 380px;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(77,93,107,0.18);
    transition: transform 0.4s, box-shadow 0.4s;
    background: #fff;
}
.about-gallery-modern.single-image img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(77,93,107,0.22);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.menu-toggle .bar {
    width: 28px;
    height: 4px;
    background: #4d5d6b;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex !important;
        position: absolute;
        right: 24px;
        top: 16px;
        z-index: 1200;
    }
    .navbar {
        position: relative;
    }
    .navbar {
        flex-wrap: wrap;
        gap: 0;
        max-width: 900px;
    }
    .moonbox-logo-img {
        height: 38px;
        max-width: 900px;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #4d5d6b;
        flex-direction: column;
        align-items: center;
        gap: 0;
        display: none;
        padding: 1.5rem 0;
        z-index: 1001;
        border-radius: 0 0 18px 18px;
        max-width: 900px;
        margin: 0 auto;
    }
    main, .about-modern, #urunler.products, .contact, footer {
        max-width: 900px;
        margin: 0 auto;
    }
}
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 1; transform: translateY(0);}
}

.splash-screen {
    position: fixed;
    z-index: 3000;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(77,93,107,0.7) 0%, rgba(44,62,80,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s;
    overflow: hidden;
}

.splash-screen.hide {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .splash-video {
        object-position: center;
    }
}

.splash-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.splash-content {
    text-align: center;
    color: #fff;
    animation: fadeInSplash 1.2s;
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 2rem 2rem 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 800px;
    width: 90%;
    margin-top: -5vh;
    position: relative;
    z-index: 1;
}

.splash-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.splash-content h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.splash-desc {
    font-size: 1.1rem;
    color: #e9d97a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.splash-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0 2rem 0;
    padding: 0 1rem;
}

.splash-icon-box {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.splash-icon-box i {
    font-size: 2rem;
    color: #e9d97a;
    transition: all 0.3s ease;
}

.splash-icon-box span {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.splash-icon-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.splash-icon-box:hover i {
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .splash-icons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 1.5rem auto;
    }
    
    .splash-content {
        margin-top: -3vh;
        padding: 1.5rem 1rem 2.5rem 1rem;
    }
    
    .splash-content h1 {
        font-size: 2rem;
    }
    
    .splash-desc {
        font-size: 1rem;
    }
    .splash-screen::before {
        background-position: center;
    }
}

@keyframes fadeInSplash {
    from { opacity: 0; transform: scale(0.95);}
    to { opacity: 1; transform: scale(1);}
}

.hero-eylul {
    background: #4d5d6b;
    padding: 5rem 0 3rem 0;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 2px 24px rgba(77,93,107,0.07);
    margin-bottom: 2rem;
}

/* Hero Sliders */
.hero-sliders {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem;
}

.hero-slider {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.slider-track {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-track img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(233, 217, 122, 0.9);
    border: none;
    border-radius: 50%;
    color: #4d5d6b;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow.left {
    left: -20px;
}

.slider-arrow.right {
    right: -20px;
}

.slider-arrow:hover {
    background: #4d5d6b;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

@media (max-width: 768px) {
    .hero-slider {
        min-width: 260px;
        max-width: 300px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .slider-arrow.left {
        left: -15px;
    }
    
    .slider-arrow.right {
        right: -15px;
    }
}

.hero-boxes {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 0 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-box {
    flex: 1;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(233, 217, 122, 0.1), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(233, 217, 122, 0.4);
}

.hero-box:hover::before {
    opacity: 1;
}

.hero-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-box:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(233, 217, 122, 0.4);
}

.hero-box h3 {
    font-size: 2.5rem;
    color: #e9d97a;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.hero-box h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e9d97a, transparent);
    transition: width 0.3s ease;
}

.hero-box:hover h3::after {
    width: 100px;
}

.hero-box p {
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

@media (max-width: 1400px) {
    .hero-boxes {
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-box {
        max-width: 420px;
        padding: 2.5rem;
    }
    
    .hero-box img {
        height: 360px;
    }

    .hero-content h2 {
        font-size: 3.5rem;
    }

    .hero-slogan {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-boxes {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-box {
        width: 100%;
        max-width: 380px;
        padding: 2rem;
    }

    .hero-box img {
        height: 300px;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-slogan {
        font-size: 2rem;
    }
}

.service-boxes {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.service-box {
    flex: 1;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

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

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

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

.service-content {
    padding: 2.5rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-content h3 {
    font-size: 2.2rem;
    color: #4d5d6b;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.service-button {
    background: #4d5d6b;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(77, 93, 107, 0.2);
    position: relative;
    overflow: hidden;
}

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

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(77, 93, 107, 0.3);
    background: #e9d97a;
    color: #4d5d6b;
}

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

.service-button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .service-content {
        padding: 2rem;
    }

    .service-content h3 {
        font-size: 2rem;
    }

    .service-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .service-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

.service-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.service-header .service-icon {
    font-size: 3.5rem;
    color: #e9d97a;
    margin-bottom: 1rem;
    display: block;
}
.service-header h1 {
    font-size: 2.7rem;
    color: #4d5d6b;
    font-weight: 800;
    margin-bottom: 1rem;
}
.service-header .service-intro {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-gallery {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.service-gallery img {
    width: 350px;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(77, 93, 107, 0.13);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-gallery img:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 32px rgba(77, 93, 107, 0.18);
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.feature-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(77, 93, 107, 0.07);
    font-size: 1.1rem;
    color: #4d5d6b;
    font-weight: 600;
    min-width: 120px;
    transition: background 0.2s, box-shadow 0.2s;
}
.feature-box i {
    font-size: 2rem;
    color: #e9d97a;
    margin-bottom: 0.5rem;
}
.feature-box span {
    margin-top: 0.2rem;
}
.feature-box:hover {
    background: #e9d97a;
    color: #4d5d6b;
    box-shadow: 0 4px 16px rgba(77, 93, 107, 0.13);
}

.contact-section {
    background: #e9d97a;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(77, 93, 107, 0.10);
    padding: 2.5rem 2rem;
    margin-top: 2rem;
}
.contact-section h2 {
    color: #4d5d6b;
}
.contact-section p,
.contact-section .contact-info p {
    color: #4d5d6b;
    font-weight: 600;
}
.contact-section .contact-info i {
    color: #4d5d6b;
}

@media (max-width: 900px) {
    .service-gallery {
        flex-direction: column;
        align-items: center;
    }
    .service-gallery img {
        width: 100%;
        max-width: 400px;
        height: 200px;
    }
    .service-features {
        flex-direction: column;
        align-items: center;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    max-width: 1500px;
    margin: 4.5rem auto 2rem auto;
    padding: 0 1rem;
}

.hero-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    border: 3px solid rgba(255,255,255,0.7);
    transition: transform 0.35s cubic-bezier(.39,.575,.565,1), box-shadow 0.35s, border-color 0.35s;
}

.hero-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid rgba(233,30,99,0.18);
    pointer-events: none;
    transition: border-color 0.35s;
}

.hero-item:hover {
    transform: scale(1.035) translateY(-6px);
    box-shadow: 0 12px 48px rgba(233,30,99,0.18), 0 2px 16px rgba(0,0,0,0.10);
    border-color: #e91e63;
    z-index: 2;
}

.hero-item:hover::after {
    border-color: #ffd6e0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    border-radius: 14px;
    pointer-events: none;
    border: 2px solid rgba(255,255,255,0.18);
    transition: background 0.35s, border-color 0.35s;
}

.hero-item:hover .hero-overlay {
    background: rgba(233,30,99,0.10);
    border-color: #e91e63;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: filter 0.35s;
}

.hero-item:hover .hero-text {
    filter: brightness(1.15) drop-shadow(0 2px 8px #e91e63aa);
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px #0008;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 0.3em 0.8em;
    margin-top: 0.5em;
    display: inline-block;
    transition: background 0.35s, color 0.35s;
}

.hero-item:hover .hero-title {
    background: #e91e63;
    color: #fff;
}

.hero-sub {
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive, sans-serif;
    color: #ffd6e0;
    text-shadow: 0 2px 8px #0006;
    margin-bottom: 0.2em;
    display: block;
    transition: color 0.35s;
}

.hero-item:hover .hero-sub {
    color: #e91e63;
}

.hero-large {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
    min-height: 320px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.hero-small {
    min-height: 320px;
}

.hero-tall {
    grid-row: 1 / span 2;
    grid-column: 3 / 4;
    min-height: 660px;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    .hero-large, .hero-tall {
        grid-row: auto;
        min-height: 320px;
    }
}

@media (max-width: 700px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        margin-top: 100px;
        gap: 20px;
        padding: 20px;
        height: auto;
    }
    
    .hero-item, .hero-large, .hero-tall {
        width: 100%;
        min-height: 300px;
        margin-bottom: 20px;
    }
}

.entry-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    margin: 0;
    min-height: 100vh;
    padding: 0;
    position: relative;
}

.entry-hero-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    overflow: hidden;
    min-height: 280px;
    box-shadow: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    transition: transform 0.3s, box-shadow 0.3s;
}

.entry-hero-main {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
    min-height: 600px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.entry-hero-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 0 2px 16px #000a;
    text-align: center;
    z-index: 2;
}

.entry-hero-main h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
}

.entry-hero-btn {
    background: rgba(255,255,255,0.95);
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.7em 1.5em;
    margin: 1.5rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.entry-hero-btn:hover {
    background: #e91e63;
    color: #fff;
    box-shadow: 0 6px 24px #e91e6380;
    transform: scale(1.07);
}

.entry-hero-btn-bottom {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    margin: 0;
}

.entry-hero-topright {
    grid-row: 1 / 2;
}

.entry-hero-bottomright {
    grid-row: 2 / 3;
    grid-column: 2 / span 2;
    align-items: flex-end;
    justify-content: flex-end;
}

.entry-hero-item:not(.entry-hero-main) .entry-hero-btn {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}

.entry-hero-item:hover {
    transform: scale(1.025) translateY(-4px);
    box-shadow: 0 12px 32px #e91e6380, 0 2px 16px rgba(0,0,0,0.10);
    z-index: 2;
}

@media (max-width: 1100px) {
    .entry-hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        min-height: 100vh;
        width: 100vw;
        max-width: 100vw;
    }
    .entry-hero-main {
        min-height: 320px;
    }
}

@media (max-width: 700px) {
    .entry-hero-grid {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        gap: 0;
        height: auto;
    }
    
    .entry-hero-item, .entry-hero-main {
        width: 100vw;
        min-height: 100vh;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }

    .entry-hero-item img, .entry-hero-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .entry-hero-center {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.whatsapp-link {
    margin-top: 20px;
}

.whatsapp-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #25D366;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.whatsapp-link a:hover {
    transform: scale(1.05);
    color: #128C7E;
}

.whatsapp-link i {
    font-size: 2rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp i {
    font-size: 35px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp i {
        font-size: 30px;
    }
}
                
                