/* Apple Style CSS */
/* Navigation */


    .apple-nav {
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        position: sticky;
        top: 0;
        z-index: 1000;
        overflow-x: hidden;
        height: 44px;
        box-shadow: none;
    }

    .apple-nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        max-width: 980px;
        margin: 0 auto;
        padding: 0;
        flex-wrap: wrap;
    }

    .zoomed {
        transform: scale(2);
        cursor: zoom-out;
    }

    .product-img {
        transition: transform 0.3s ease;
        cursor: zoom-in;
    }

    .product-main-image {
        overflow: hidden;
        position: relative;
    }

    .product-img {
        transition: transform 0.3s ease;
        transform-origin: center center;
    }


    .nav-logo-text {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: -0.2px;
        color: #f5f5f7;
    }

    .apple-nav-logo {
        color: #f5f5f7;
        opacity: 0.8;
        transition: opacity 0.3s;
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        height: 44px;
        padding: 0 10px;
    }

    .apple-nav-logo:hover {
        opacity: 1;
    }

    .apple-nav-links {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
    }

    .apple-nav-link {
        color: #f5f5f7;
        font-size: 12px;
        font-weight: 400;
        text-decoration: none;
        flex-wrap: wrap;
        opacity: 0.8;
        gap: 28px;
        transition: opacity 0.3s;
        align-items: center;
        padding: 0;
        position: relative;
        height: 44px;
        display: flex;
    }

    .apple-nav-link:hover,
    .apple-nav-link.active {
        opacity: 1;
        color: #f5f5f7;
    }

    .apple-nav-actions {
        display: flex;
        gap: 18px;
        align-items: center;
    }

    .apple-nav-icon {
        color: #f5f5f7;
        opacity: 0.8;
        transition: opacity 0.3s;
        font-size: 12px;
    }

    .apple-nav-icon:hover {
        opacity: 1;
    }

    .apple-nav-lang-switcher {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .apple-nav-lang {
        color: #f5f5f7;
        font-size: 12px;
        opacity: 0.7;
        display: flex;
        text-decoration: none;
        transition: opacity 0.3s;
        padding: 0 4px;
    }

    .apple-nav-lang.active {
        opacity: 1;
    }

    .apple-nav-lang:hover {
        opacity: 1;
    }

    .apple-nav-lang-divider {
        color: #f5f5f7;
        opacity: 0.4;
        font-size: 10px;
    }

    /* Hero Section */
    .apple-hero {
        margin-top: 0;
        background-color: #000;
        position: relative;
        overflow: hidden;
    }

    .apple-hero-banner {
        position: relative;
        width: 100%;
        height: 700px;
        overflow: hidden;
        background-color: #000;
    }

    .apple-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: #fbfbfd;
    }

    .apple-hero-image-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
        opacity: 0.9;
    }

    .apple-hero-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transform: scale(1.05);
        transition: transform 8s ease-out;
    }

    .carousel-item.active .apple-hero-image {
        transform: scale(1.0);
    }

    .apple-hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        z-index: 10;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 80%);
    }

    .apple-hero-text-container {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 650px;
        margin: 0;
        margin-left: 10%;
        text-align: left;
    }

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

    .apple-hero-title {
        font-size: 56px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
        line-height: 1.07143;
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .apple-hero-subtitle {
        font-size: 27px;
        color: #ffffff;
        margin-bottom: 30px;
        line-height: 1.2;
        font-weight: 400;
        animation: fadeInUp 0.8s ease-out 0.2s forwards;
        opacity: 0;
    }

    .apple-hero-links {
        display: flex;
        gap: 35px;
        animation: fadeInUp 0.8s ease-out 0.4s forwards;
        opacity: 0;
    }

    .apple-hero-link {
        font-size: 21px;
        color: #2997ff;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .apple-hero-link:hover {
        text-decoration: underline;
    }

    .apple-hero-link-arrow {
        font-size: 16px;
        margin-left: 6px;
    }

    .apple-hero-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #000 0%, #000 40%, transparent 70%);
        z-index: 1;
    }

    .apple-hero-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        position: relative;
    }

    .apple-carousel-indicators-container {
        position: absolute;
        bottom: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 20;
    }

    .apple-carousel-indicators {
        display: flex;
        gap: 12px;
        background-color: rgba(0, 0, 0, 0.3);
        padding: 6px 12px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }

    .apple-carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .apple-carousel-indicator.active {
        background-color: #fff;
        transform: scale(1.2);
    }

    /* Product Categories Section */
    .apple-product-section {
        padding: 120px 0;
        background-color: #fafafa;
        position: relative;
        overflow: hidden;
    }

    .apple-section-header {
        text-align: center;
        margin-bottom: 70px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .apple-section-title {
        font-size: 48px;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 16px;
        letter-spacing: -0.003em;
    }

    .apple-section-subtitle {
        font-size: 24px;
        color: #86868b;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.47059;
        font-weight: 400;
    }

    .apple-product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

    .apple-product-card {
        background-color: #fff;
        border-radius: 18px;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        height: 100%;
        position: relative;
        will-change: transform;
    }

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

    .apple-product-card-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .apple-product-image-container {
        height: 280px;
        overflow: hidden;
        position: relative;
    }

    .apple-product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
        z-index: 1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .apple-product-card:hover .apple-product-overlay {
        opacity: 1;
    }

    .apple-product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
        transform-origin: center;
    }

    .apple-product-card:hover .apple-product-image {
        transform: scale(1.07);

    }

    .apple-product-info {
        padding: 28px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
        z-index: 2;
        text-decoration: none;

    }

    .apple-product-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1d1d1f;
        letter-spacing: -0.2px;
        text-decoration: none;
        border-bottom: none

    }

    .apple-product-description {
        font-size: 16px;
        color: #86868b;
        margin-bottom: 22px;
        line-height: 1.47059;
        flex-grow: 1;
        font-weight: 400;
        text-decoration: none;
    }

    .apple-product-link {
        font-size: 17px;
        text-decoration: none;
        font-weight: 400;
        display: inline-flex;
        align-items: center;
        transition: all 0.2s ease;
        position: relative;
    }

    .apple-product-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        text-decoration: none;
        width: 0;
        height: 1px;
        background-color: #06c;
        transition: width 0.3s ease;
    }

    .apple-product-link:hover::after {
        width: 100%;
        text-decoration: none;
    }

    .apple-product-link-arrow {
        font-size: 14px;
        margin-left: 4px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .apple-product-link:hover .apple-product-link-arrow {
        transform: translateX(5px);
    }

    /* Featured Product Section */
    .apple-featured-section {
        padding: 120px 0;
        background-color: #f5f5f7;
        position: relative;
        overflow: hidden;
        margin-top: 40px;
    }

    .apple-featured-background {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .apple-featured-content {
        max-width: 490px;
        padding-right: 30px;
    }

    .apple-featured-title {
        font-size: 48px;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 16px;
        letter-spacing: -0.003em;
    }

    .apple-featured-subtitle {
        font-size: 24px;
        color: #86868b;
        margin-bottom: 30px;
        line-height: 1.47059;
        max-width: 500px;
        font-weight: 400;
    }

    .apple-featured-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .apple-featured-link {
        font-size: 19px;
        color: #06c;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .apple-featured-link:hover {
        text-decoration: underline;
    }

    .apple-featured-link-arrow {
        font-size: 14px;
        margin-left: 6px;
    }

    .apple-featured-image-container {
        max-width: 600px;
        margin-left: auto;
    }

    .apple-featured-image {
        width: 100%;
        height: auto;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .container .row {
        display: flex;
        align-items: center;
    }

    /* CTA Section */
    .apple-cta-section {
        padding: 120px 0;
        background: #000;
        position: relative;
        overflow: hidden;
        color: #fff;
        text-align: center;
    }

    .apple-cta-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 1;
        z-index: 0;
    }

    .apple-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://images.unsplash.com/photo-1528495612343-9ca9f4a4de28?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center center/cover;
        opacity: 0.1;
        z-index: 1;
    }

    .apple-cta-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .apple-cta-title {
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: -0.003em;
    }

    .apple-cta-text {
        font-size: 24px;
        line-height: 1.47059;
        margin-bottom: 40px;
        font-weight: 400;
        opacity: 0.9;
    }

    .apple-cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .apple-cta-button {
        display: inline-block;
        padding: 16px 30px;
        border-radius: 30px;
        font-size: 17px;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .apple-cta-button.primary {
        background-color: #fff;
        color: #06c;
    }

    .apple-cta-button.primary:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: translateY(-3px);
    }

    .apple-cta-button.secondary {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .apple-cta-button.secondary:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    @media (max-width: 768px) {
        .apple-cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .apple-cta-title {
            font-size: 36px;
        }

        .apple-cta-text {
            font-size: 20px;
        }
    }

    /* Testimonials Section */
    .apple-testimonials-section {
        padding: 120px 0;
        background-color: #fff;
        position: relative;
    }

    .apple-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .apple-testimonial-card {
        background-color: #f5f5f7;
        border-radius: 18px;
        overflow: hidden;
        transition: all 0.4s ease;
        height: 100%;
    }

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

    .apple-testimonial-content {
        padding: 35px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .apple-testimonial-stars {
        display: flex;
        margin-bottom: 20px;
        gap: 5px;
    }

    .apple-testimonial-text {
        font-size: 17px;
        line-height: 1.47059;
        color: #1d1d1f;
        margin-bottom: 25px;
        flex-grow: 1;
        font-weight: 400;
        font-style: italic;
    }

    .apple-testimonial-author {
        display: flex;
        align-items: center;
    }

    .apple-testimonial-author-info {
        display: flex;
        flex-direction: column;
    }

    .apple-testimonial-name {
        font-size: 16px;
        font-weight: 600;
        color: #1d1d1f;
        margin: 0;
    }

    .apple-testimonial-location {
        font-size: 14px;
        color: #86868b;
        margin: 0;
    }

    @media (max-width: 992px) {
        .apple-testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .apple-testimonials-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .apple-product-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .apple-hero-banner {
            height: 500px;
        }

        .apple-hero-title {
            font-size: 40px;
        }

        .apple-hero-subtitle {
            font-size: 22px;
        }

        .apple-hero-links {
            flex-direction: column;
            gap: 15px;
        }

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

        .apple-section-title {
            font-size: 36px;
        }

        .apple-section-subtitle {
            font-size: 20px;
        }

        .container .row {
            flex-direction: column;
        }

        .apple-featured-content {
            max-width: 100%;
            padding-right: 0;
            margin-bottom: 40px;
            text-align: center;
        }

        .apple-featured-image-container {
            max-width: 100%;
        }
    }

    /* Layout Styles from app.blade.php */
    :root {
        --bs-primary: #4f46e5;
        --bs-primary-rgb: 79, 70, 229;
        --bs-primary-hover: #4338ca;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: #333;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    main {
        flex: 1 0 auto;
        background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
    }

    .navbar {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        background-color: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .navbar-brand span:first-child {
        background: linear-gradient(to right, #4f46e5, #3730a3);
        color: #fff;
        padding: 6px 10px;
        border-radius: 8px;
        margin-right: 8px;
        font-weight: 700;
        box-shadow: 0 2px 10px rgba(79, 70, 229, 0.2);
    }

    .nav-link {
        position: relative;
        font-weight: 500;
        color: #212529;
        margin: 0 0.5rem;
        padding: 0.5rem 0.25rem;
    }

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

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

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

    .btn-primary {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
    }

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: var(--bs-primary-hover);
        border-color: var(--bs-primary-hover);
    }

    .btn-outline-primary {
        color: var(--bs-primary);
    }

    .feature-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        background-color: rgba(var(--bs-primary-rgb), 0.1);
        color: var(--bs-primary);
        font-size: 1.5rem;
    }

@media (max-width: 768px) {
    .apple-nav-container {
        flex-direction: column;
        align-items: center;
    }


    @media (min-width: 1200px) {
        .apple-cta-title {
            font-size: 56px;
        }
        .apple-cta-buttons {
            max-width: 800px;
            margin: 0 auto;
        }
    }

    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Sağa kaymayı engeller */
        width: 100%;
    }
}

