/* Genel Stiller */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --gold-color: #e94560;
    --light-color: #f8f9fa;
    --dark-color: #0f0f23;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-gold: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Source Sans 3', sans-serif;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    padding-top: 115px;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background: var(--gradient-primary);
    padding: 0.5rem 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.top-bar .fa-phone {
    margin-right: 8px;
    animation: phone-jiggle 1.5s infinite;
}

@keyframes phone-jiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Mobil cihazlar için özel stiller */
.mobile-device {
    --animation-duration: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 52, 96, 0.7) 50%, rgba(22, 33, 62, 0.8) 100%), url('../images/coconut-label-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: -115px;
    padding-top: 115px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Slider */
.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-item {
    height: 80vh;
}

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

.carousel-caption {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius);
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-heavy);
}

.carousel-caption h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    animation: slideInRight 1s ease 0.5s forwards;
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 0;
    transform: translateY(20px);
    opacity: 0;
    animation: slideInLeft 1s ease 0.7s forwards;
    font-family: var(--body-font);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* İlk slider için özel efekt */
.carousel-item:nth-child(1) .carousel-caption {
    animation: zoomIn 1s ease forwards;
}

.carousel-item:nth-child(1) .carousel-caption h3 {
    animation: fadeInDown 1s ease 0.5s forwards;
}

.carousel-item:nth-child(1) .carousel-caption p {
    animation: fadeInUp 1s ease 0.7s forwards;
}

/* İkinci slider için özel efekt */
.carousel-item:nth-child(2) .carousel-caption {
    animation: slideInUp 1s ease forwards;
}

.carousel-item:nth-child(2) .carousel-caption h3 {
    animation: bounceIn 1s ease 0.5s forwards;
}

.carousel-item:nth-child(2) .carousel-caption p {
    animation: fadeIn 1s ease 0.7s forwards;
}

/* Üçüncü slider için özel efekt */
.carousel-item:nth-child(3) .carousel-caption {
    animation: fadeIn 1s ease forwards;
}

.carousel-item:nth-child(3) .carousel-caption h3 {
    animation: slideInDown 1s ease 0.5s forwards;
}

.carousel-item:nth-child(3) .carousel-caption p {
    animation: slideInUp 1s ease 0.7s forwards;
}



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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 30px;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .navbar-brand img {
    transform: scale(0.95);
}

.navbar.scrolled .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: #2c3e50 !important;
    font-weight: 700;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    max-height: 80px;
    width: auto;
}

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

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-family: var(--body-font);
    color: var(--primary-color) !important;
    font-weight: 600;
    margin: 0 1rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-color) !important;
    background: rgba(233, 69, 96, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    transition: var(--transition);
    border-radius: 2px;
}

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

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

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

/* Mobil menü */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

/* Hakkımızda Section */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.about-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: var(--heading-font);
    font-size: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.about-section img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    height: 300px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.about-section img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-heavy);
}

.about-section p {
    text-align: justify;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--body-font);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.about-section .lead {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--accent-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.about-section .position-relative {
    margin-bottom: 2rem;
}

/* Sertifikalar Section */
.certificates-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.certificates-section h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: var(--heading-font);
    font-size: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.certificates-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, white, transparent);
    border-radius: 2px;
}

.certificates-section .row {
    position: relative;
    z-index: 2;
}

.certificates-section .col-md-3 {
    margin-bottom: 2rem;
}

.certificates-section .col-md-3 > div {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.certificates-section .col-md-3 > div:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-heavy);
}

.certificates-section img {
    transition: var(--transition);
    filter: brightness(1.1);
    max-height: 80px;
    width: auto;
}

.certificates-section .col-md-3 > div:hover img {
    transform: scale(1.1);
    filter: brightness(1.3);
}

/* Sertifika İkonları */
.certificate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

.certificate-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.certificate-icon svg {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.certificate-item:hover .certificate-icon {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.certificate-item:hover .certificate-icon svg {
    filter: brightness(1.1);
}

/* Sertifika İkon Renkleri */
.kosher-icon svg {
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

.haccp-icon svg {
    filter: drop-shadow(0 2px 4px rgba(33, 150, 243, 0.3));
}

.iso22000-icon svg {
    filter: drop-shadow(0 2px 4px rgba(255, 152, 0, 0.3));
}

.iso9001-icon svg {
    filter: drop-shadow(0 2px 4px rgba(156, 39, 176, 0.3));
}

.fda-icon svg {
    filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.3));
}

/* Sertifika Başlıkları */
.certificate-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    transition: var(--transition);
}

.certificate-item:hover h5 {
    color: var(--gold-color);
    transform: translateY(-2px);
}

.certificates-section h5 {
    color: white;
    margin-top: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Premium Footer */
.premium-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.brand-title {
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.certification-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.footer-section {
    margin-bottom: 2rem;
}

.section-title {
    color: white;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: var(--gold-color);
    font-size: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item i {
    color: var(--gold-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    min-width: 16px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding: 0.25rem 0;
}

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

.footer-links a i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Online Alışveriş */
.online-shop {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.shop-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
}

.shop-logo {
    width: 200px;
    height: 60px;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(1.1);
}

.shop-link:hover .shop-logo {
    transform: scale(1.1);
    filter: brightness(1.3);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold-color);
}

/* Footer Animasyonları */
@keyframes footer-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: footer-fade-in 0.6s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
.footer-section:nth-child(5) { animation-delay: 0.5s; }

/* Footer Hover Efektleri */
.footer-brand:hover .footer-logo {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.certification-badges .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .online-shop {
        justify-content: center;
    }
    
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .shop-logo {
        width: 50px;
        height: 50px;
    }
    
}

/* İletişim Formu */
.contact-form .form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    .about-section {
        padding: 1.5rem 0;
    }

    .about-section img {
        float: none !important;
        width: 100% !important;
        margin: 0 0 1rem 0 !important;
    }

    .certificates-section {
        padding: 3rem 0;
    }

    .certificates-section img {
        max-height: 80px;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1.2rem;
    }

    .carousel-caption {
        bottom: 20%;
        width: 90%;
    }
    
    .carousel-caption h3 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }


}

/* Mobil cihazlar için özel düzenlemeler */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }

    .btn-primary {
        width: 100%;
        margin-bottom: 1rem;
    }

    .contact-form .form-control {
        font-size: 16px; /* iOS'ta zoom'u engellemek için */
    }
}

/* Yüksek DPI ekranlar için */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coconut-label-2.jpg');
    }
}

/* Ürünler Section */
.products-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}


.products-section .card {
    border: none;
    transition: var(--transition);
    height: 100%;
    margin: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.products-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.products-section .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

.products-section .card-img-top {
   
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: var(--transition);
    padding: 15px;
}

.products-section .card:hover .card-img-top {
    transform: scale(1.02);
}

.products-section .card-body {
    padding: 1.25rem;
}

.products-section .card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-family: var(--heading-font);
    transition: var(--transition);
}

.products-section .card:hover .card-title {
    color: var(--gold-color);
}

.products-section .card-text {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-family: var(--body-font);
    line-height: 1.5;
}

.products-section .row {
    margin: 0 -1rem;
}

.products-section .col-md-3 {
    padding: 0 1rem;
}

/* Yumuşak Kaydırma */
html {
    scroll-behavior: smooth;
}

/* Lazy Loading Styles */
.lazy-load {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(0);
}

/* Add top padding to body to prevent content from being hidden under fixed navbar */
body {
    padding-top: 115px;
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-size: 28px;
}

.whatsapp-button a:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-button a:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        border-radius: 50%;
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0.3);
        border-radius: 50%;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        border-radius: 50%;
    }
}

/* Mobil cihazlar için WhatsApp butonu */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
} 