/* General Body Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    padding: 0;
    background-color: #f5f5f7; /* Apple-like light grey */
    color: #1d1d1f; /* Apple-like dark grey for text */
    line-height: 1.6;
}

.sr-only { /* Style for screen-reader only text */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header and Navigation */
header {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #d2d2d7;
    padding: 10px 5%;
    position: fixed;
    width: 90%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav .logo {
    display: flex;
    align-items: center;
}

nav .logo img {
    height: 40px;
    margin-right: 10px;
}

nav .logo span {
    font-size: 1.5em;
    font-weight: 600;
    color: #1d1d1f;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #007aff; /* Apple blue */
}

/* Hamburger Menu Button (Initially hidden on desktop) */
.menu-toggle {
    display: none; /* Hidden by default, shown in media query */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px; /* Space from logo or other elements */
    z-index: 1001; /* Ensure it's above other header elements if needed */
}

.hamburger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1d1d1f;
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1d1d1f;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger-icon::before {
    top: -7px;
}

.hamburger-icon::after {
    bottom: -7px;
}

/* Styles for when menu is open (X icon) */
.menu-toggle[aria-expanded="true"] .hamburger-icon {
    background-color: transparent; /* Middle bar disappears */
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}


/* Main Content Area */
main {
    padding-top: 80px; /* Adjust based on header height */
}

/* Sections */
section {
    padding: 80px 7%; /* Increased padding for more white space */
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

section:last-child {
    border-bottom: none;
}

section h2 {
    font-size: 3.2em; /* Adjusted based on gocebe-secimi */
    margin-bottom: 40px; 
    color: #333; /* Adjusted based on gocebe-secimi */
    font-weight: 600; /* Adjusted based on gocebe-secimi */
}

.section-intro {
    font-size: 1.3em; 
    color: #555; /* Slightly lighter than before, closer to #666 */
    max-width: 750px;
    margin: 0 auto 60px auto; 
    line-height: 1.7;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Slightly larger minmax */
    gap: 40px; /* Increased gap */
    margin-top: 50px; /* More space above grid */
}

.product-card {
    background-color: #fff;
    border-radius: 16px; /* More rounded corners */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07); /* Softer, more diffused shadow */
    padding: 30px; /* Increased padding */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* To contain the image zoom */
}

.product-card:hover {
    transform: translateY(-8px); /* More pronounced hover effect */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.product-card:hover img {
    transform: scale(1.05); /* Zoom image on card hover */
}

.product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px; /* More rounded image corners */
    margin-bottom: 25px; /* More space below image */
    transition: transform 0.4s ease-out; /* Smooth zoom transition */
}

.product-card h3 {
    font-size: 2.2em; /* Adjusted based on gocebe-option h3 */
    font-weight: 600;
    margin-bottom: 15px; 
    color: #333; /* Adjusted based on gocebe-option h3 */
}

.icon-placeholder {
    margin-right: 10px; 
    font-size: 1em; /* Keep icon size relative to its direct parent or define explicitly if needed */
    color: #007aff; 
}

.product-card p {
    font-size: 1.15em; /* Adjusted */
    color: #666; /* Adjusted */
    margin-bottom: 25px; 
    line-height: 1.6;
}

.product-cta {
    font-size: 0.95em; /* Slightly larger CTA */
    padding: 12px 24px; /* Larger padding for CTA */
}


/* Feature Grid (for Özel Tasarımlar) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Slightly larger minmax */
    gap: 40px; /* Increased gap */
    margin-top: 50px;
    text-align: left;
}

.feature-item {
    background-color: transparent;
    padding: 25px; /* Increased padding */
    border-radius: 12px;
}

.feature-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px; /* More space */
}

.feature-item h4 {
    font-size: 2.2em; /* Adjusted to match product-card h3 */
    font-weight: 600;
    margin-bottom: 15px; 
    color: #333; /* Adjusted to match product-card h3 */
}

/* .feature-item .icon-placeholder can have specific styles if needed */

.feature-item p {
    font-size: 1.15em; /* Adjusted */
    color: #666; /* Adjusted */
    line-height: 1.7; 
}


/* Hero Banner */
.hero-banner {
    background-image: url('../images/gocebebannermoduler/herobanner1.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 120px 7%; /* Increased padding */
    display: flex; /* Changed from text-align: center on parent to flex centering */
    position: relative; /* For the overlay */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 85vh; /* Slightly taller */
    text-align: center; /* Keep text center alignment for children by default */
}

.hero-banner::before { /* Overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1;
}

.hero-content { /* Added a wrapper for h1 and p to control their collective alignment if needed */
    display: flex;
    flex-direction: column;
    align-items: center; /* This will center the h1 and p block */
    position: relative; /* To ensure content is above the overlay */
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8em; /* Larger hero title */
    font-weight: 700;
    margin-bottom: 25px; /* More space */
    line-height: 1.15; /* Adjusted line height */
}

.hero-content p {
    font-size: 1.5em; /* Larger hero subtitle */
    margin-bottom: 40px; /* More space */
    max-width: 680px; /* Slightly reduced max-width for better line breaks */
    line-height: 1.65; /* Slightly increased line-height for readability */
}

/* Call to Action Buttons */
.cta-button {
    display: inline-block;
    background-color: #007aff;
    color: #fff;
    padding: 18px 35px; /* Larger CTA */
    text-decoration: none;
    border-radius: 10px; /* Slightly more rounded */
    font-weight: 500;
    font-size: 1.15em; /* Larger font size */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #005bb5;
    transform: translateY(-3px); /* More pronounced hover */
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1DA851;
}

/* Testimonial Section */
#musteri-yorumlari {
    background-color: #ffffff;
    padding-top: 80px; 
    padding-bottom: 80px;
    /* overflow: hidden; */ /* Section overflow can remain default */
}

@keyframes scrollContinuously {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Scroll one full set of original items (20 cards) */
        /* Card width (320px) + gap (30px) = 350px per item space */
        /* Total scroll = 350px * 20 items = 7000px */
        transform: translateX(-7000px); 
    }
}

.testimonial-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    overflow: hidden; /* This will clip the overflowing .testimonial-grid */
    width: 100%; /* Ensure it takes full width of its container */
}

.testimonial-grid {
    display: flex; 
    flex-wrap: nowrap; 
    /* overflow-x: hidden; No longer needed, wrapper handles overflow */
    gap: 30px; 
    /* Calculate width: (card_width + gap) * total_duplicated_cards */
    /* (320px + 30px) * 40 cards = 350px * 40 = 14000px */
    width: 14000px; 
    animation: scrollContinuously 120s linear infinite; /* Adjust duration for speed (e.g., 60s for faster, 120s for slower) */
}

.testimonial-carousel-wrapper:hover .testimonial-grid {
    animation-play-state: paused;
}

.testimonial-card {
    background-color: #f8f8fa;
    border: 1px solid #e8e8ed;
    padding: 35px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    flex: 0 0 auto; 
    width: 320px; 
}

.testimonial-nav {
   display: none; /* Hide JS navigation buttons as CSS animation handles scroll */
}


.testimonial-card .stars {
    color: #ffb400;
    font-size: 1.4em; /* Larger stars */
    margin-bottom: 20px; /* More space */
}

.testimonial-card p {
    font-size: 1.05em; /* Larger testimonial text */
    color: #3a3a3c; /* Softer text color */
    line-height: 1.75; /* Increased line height */
    margin-bottom: 25px; /* More space */
    font-style: italic;
}

.testimonial-card h4 {
    font-size: 1.15em; /* Larger name */
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}


/* Hakkimizda Section */
#hakkimizda .about-content {
    max-width: 850px; /* Wider content area */
    margin: 0 auto;
    text-align: left;
    font-size: 1.15em; /* Slightly larger text */
    line-height: 1.75; /* Increased line height */
}

#hakkimizda .about-content p {
    margin-bottom: 25px; /* More space between paragraphs */
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 7%; /* Increased padding */
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 0.95em; /* Slightly larger footer text */
}

/* Responsive Design (Basic Example) */
@media (max-width: 768px) {
    header {
        padding: 10px 3%;
        /* Ensure header stays on top and takes full width for menu dropdown */
        left: 0;
        right: 0;
        width: auto; /* Override the 90% width from desktop */
    }

    nav {
        /* flex-direction: column; Remove this, keep logo and toggle on same line */
        /* align-items: flex-start; Remove this */
        justify-content: space-between; /* Ensure logo and toggle are spaced out */
        width: 100%;
    }

    .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

    nav .logo {
        margin-bottom: 0; /* Remove bottom margin if nav is not column */
    }

    nav ul#main-menu {
        display: none !important; /* Hide menu by default on mobile - ADDED !important */
        flex-direction: column;
        width: 100%;
        position: absolute; /* Position it below the header */
        top: 60px; /* Adjust based on actual header height, e.g., logo height + padding */
        left: 0;
        background-color: rgba(255, 255, 255, 0.95); /* Slightly more opaque for readability */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid #d2d2d7;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 10px 0; /* Add some padding */
        z-index: 999; /* Below menu-toggle but above content */
    }

    nav ul#main-menu.menu-open {
        display: flex !important; /* Show menu when .menu-open class is added - ADDED !important */
    }

    nav ul#main-menu li {
        margin-left: 0;
        margin-bottom: 0; /* Remove bottom margin, use padding on <a> */
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #e5e5e5; /* Separator for menu items */
    }
    nav ul#main-menu li:last-child {
        border-bottom: none;
    }

    nav ul#main-menu li a {
        display: block;
        padding: 15px 20px; /* Adjust padding for better touch targets */
        background-color: transparent; /* Remove individual item background */
        border-radius: 0; /* Remove individual item border-radius */
        width: 100%; /* Ensure link takes full width of li */
        box-sizing: border-box; /* Include padding in width calculation */
    }
    
    main {
        padding-top: 70px; /* Adjust based on the new fixed header height (e.g., 60px header + 10px buffer) */
    }

    section {
        padding: 60px 5%; /* Adjusted section padding for mobile */
    }

    section h2 {
        font-size: 2.2em; /* Adjusted heading size for mobile */
        margin-bottom: 30px;
    }

    .section-intro {
        font-size: 1.1em; /* Adjusted intro text size for mobile */
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.8em; /* Adjusted hero heading for mobile */
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.25em; /* Adjusted hero paragraph for mobile */
        margin-bottom: 30px;
    }
    
    .cta-button {
        font-size: 1em;
        padding: 15px 25px;
    }

    .product-grid,
    .feature-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 30px;
    }
    /* Testimonial grid on mobile will scroll horizontally, so card width needs adjustment */
    .testimonial-carousel-wrapper {
        /* No specific changes needed for mobile wrapper, it will adapt */
    }
    .testimonial-grid {
        animation: none; /* Disable marquee animation on mobile */
        overflow-x: auto; /* Enable native horizontal scroll */
        width: auto; /* Let it be as wide as its content */
        padding: 0 5% 20px 5%; /* Add horizontal padding and bottom padding for scrollbar space */
        gap: 20px; /* Smaller gap on mobile */
         /* Ensure scrollbars are hidden on mobile too if desired */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .testimonial-grid::-webkit-scrollbar { 
        display: none; /* Chrome, Safari, Opera */
    }

    .testimonial-card {
        width: 80vw; /* Make cards take up a good portion of viewport width on mobile */
        max-width: 300px; /* Cap it */
        min-width: 250px; /* Ensure not too small */
        padding: 25px;
        flex: 0 0 auto; /* Maintain for mobile */
        /* scroll-snap-align: start; */ /* Can re-enable if desired for swipe scroll */
    }

    .testimonial-nav.prev {
        left: 5px; 
    }

    .testimonial-nav.next {
        right: 5px;
    }


    .product-card,
    .feature-item { /* Keep testimonial card separate for mobile horizontal scroll */
        padding: 25px; /* Adjust card padding for mobile */
    }

    .product-card h3 {
        font-size: 1.4em;
    }
    .product-card p {
        font-size: 0.95em;
    }

    .feature-item h4 {
        font-size: 1.2em;
    }
    .feature-item p {
        font-size: 0.9em;
    }
    
    .testimonial-card p {
        font-size: 0.95em;
    }
    .testimonial-card h4 {
        font-size: 1em;
    }

    #hakkimizda .about-content {
        font-size: 1em;
    }
}

/* Styles for very small screens */
@media (max-width: 480px) {
    header {
        padding: 10px 4%;
    }
    nav .logo span {
        font-size: 1.3em;
    }
    nav ul li a {
        font-size: 0.9em;
    }

    main {
        padding-top: 110px; 
    }
    
    section {
        padding: 50px 4%;
    }

    section h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .cta-button {
        font-size: 0.9em;
        padding: 12px 20px;
    }

    .product-card h3 {
        font-size: 1.3em;
    }
    .feature-item h4 {
        font-size: 1.1em;
    }
}

/* Product Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* Ensure it's above everything */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: #fff;
    padding: 40px 50px; /* Increased padding */
    border-radius: 16px; /* Slightly more rounded */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25); /* Softer, deeper shadow */
    width: 90%;
    max-width: 750px; /* Slightly wider modal */
    max-height: 90vh; 
    overflow-y: auto; /* Scroll if content is too long */
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5em;
    color: #aaa; /* Softer close button color */
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    color: #333;
}

/* Modal Gallery Styles */
.modal-gallery {
    margin-bottom: 20px;
    text-align: center;
}

.modal-main-image {
    width: 100%;
    max-height: 400px; /* Adjust as needed */
    object-fit: contain; /* Use contain to see the whole image */
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eee; /* Optional border for the main image */
}

.modal-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Allow thumbnails to wrap on smaller screens if many */
}

.modal-thumbnails img {
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.modal-thumbnails img:hover,
.modal-thumbnails img.active-thumbnail {
    border-color: #007aff; /* Apple blue for active/hovered thumbnail */
}


/* Existing .modal-image class is now .modal-main-image, so this can be removed or repurposed if another single image modal is used elsewhere */
/* For now, I'll comment it out to avoid conflict, assuming the gallery replaces the single .modal-image */
/*
.modal-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}
*/

.modal-title {
    font-size: 2.2em; /* Slightly larger title */
    font-weight: 700; /* Bolder title */
    color: #1d1d1f;
    margin-top: 0;
    margin-bottom: 10px; /* Adjusted margin */
    text-align: center; /* Center align title */
}

.modal-product-code {
    font-size: 0.9em;
    color: #6c757d; /* Softer grey for product code */
    text-align: center;
    margin-top: -10px; /* Pull up slightly below title */
    margin-bottom: 20px;
}

.modal-description {
    font-size: 1.05em; /* Slightly larger description text */
    color: #333;
    line-height: 1.75; /* Increased line height */
    margin-bottom: 30px; /* Increased margin */
    text-align: left; /* Keep description left-aligned for readability */
}

.modal-features {
    margin-bottom: 35px; /* Increased margin */
    text-align: left;
    border-top: 1px solid #eee; /* Subtle separator */
    padding-top: 25px; /* Space above features after separator */
}

.modal-features h4 {
    font-size: 1.3em; /* Larger features heading */
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px; /* Increased margin */
}

.modal-features ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin: 0;
}

.modal-features ul li {
    font-size: 1em; /* Slightly larger feature text */
    color: #444;
    margin-bottom: 12px; /* Increased margin */
    padding-left: 25px; /* Space for custom bullet/icon */
    position: relative;
    line-height: 1.6;
}

.modal-features ul li::before {
    content: "✓"; /* Unicode checkmark or could be an SVG icon */
    color: #007aff; /* Apple blue */
    position: absolute;
    left: 0;
    font-weight: bold;
}

#modalWhatsappLink {
    display: block; /* Make it block to take full width for centering */
    width: fit-content; /* Shrink to content width */
    margin: 25px auto 0 auto; /* Center button and add top margin */
    padding: 15px 30px; /* Match other main CTAs */
    background-color: #25D366; /* WhatsApp green */
    border-radius: 8px; /* Slightly less rounded for a modern feel */
}

#modalWhatsappLink:hover {
    background-color: #1DA851; /* Darker WhatsApp green on hover */
}

.modal-price {
    font-size: 1.8em;
    font-weight: 600; /* Bold price */
    color: #1d1d1f; /* Dark text for price */
    text-align: center;
    margin-top: 25px; /* Space above price */
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px; /* Adjusted padding for mobile */
        width: 95%;
        max-height: 85vh;
    }
    .modal-title {
        font-size: 1.8em; /* Adjusted for mobile */
    }
    .modal-image {
        max-height: 250px; /* Adjusted for mobile */
        margin-bottom: 20px;
    }
    .modal-close {
        top: 10px;
        right: 10px; /* Closer to edge on mobile */
        font-size: 2.2em;
    }
    .modal-description {
        font-size: 1em;
    }
    .modal-features h4 {
        font-size: 1.15em;
    }
    .modal-features ul li {
        font-size: 0.9em;
        padding-left: 22px;
        margin-bottom: 10px;
    }
    #modalWhatsappLink {
        padding: 12px 25px;
    }
}

/* Göçebe Seçimi Section Styles (from gocebe-section/style.css and inline styles) */
#gocebe-secimi {
    text-align: center;
    padding: 80px 7%;
    background-color: #f9f9f9;
}

#gocebe-secimi .container h2 { 
    font-size: 3.5em; 
    margin-bottom: 90px; 
    color: #333; 
    font-weight: 600; 
}

.gocebe-options-wrapper { 
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 70px; 
    margin-bottom: 80px; 
    max-width: 1000px; 
    margin-left: auto; 
    margin-right: auto; 
}

.gocebe-options-wrapper .left-line { 
    position: absolute;
    top: -30px; 
    left: 50%; 
    width: 35%; 
    height: 1px; 
    background-color: #999; 
    transform: translateX(-100%); 
}

.gocebe-options-wrapper .right-line { 
    position: absolute;
    top: -30px; 
    right: 50%; 
    width: 35%; 
    height: 1px; 
    background-color: #999; 
    transform: translateX(100%); 
}

.gocebe-option { 
    text-align: center; 
    width: 45%; 
    position: relative; 
}

.gocebe-option h3 { 
    font-size: 2.5em; 
    margin-bottom: 20px; 
    color: #333; 
    font-weight: 600; 
}

.gocebe-option .image-container { 
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gocebe-option img { 
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

.gocebe-option .description { 
    font-size: 1.25em;
    color: #666;
    margin-bottom: 15px;
}

.gocebe-option .vehicle-types { 
    font-size: 1em;
    color: #777;
    margin-bottom: 10px;
    font-style: italic;
}

.gocebe-option .dimensions { 
    font-size: 1em;
    color: #666;
    margin-bottom: 30px;
}

.gocebe-option .cta-button.toggle-details { 
    background-color: #007aff; 
    padding: 15px 40px; 
    font-size: 1.1em; 
    display: inline-block; 
    border-radius: 30px; 
}

/* Göçebe Detay Bölümleri */
.gocebe-details-section { 
    display: none;
    background-color: #f0f0f0; 
    padding: 40px 20px; 
    border-top: 1px solid #ddd; 
    border-bottom: 1px solid #ddd; 
    margin-bottom: 40px; 
}

.gocebe-details-section .container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.gocebe-details-section h3 { 
    font-size: 2em; 
    margin-bottom: 30px; 
    text-align: center; 
    color: #333; 
}

.gocebe-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Increased minmax for larger cards */
    gap: 30px; /* Increased gap */
}

.gocebe-model-card {
    background: white;
    padding: 25px; /* Increased padding */
    border-radius: 12px; /* Slightly more rounded */
    box-shadow: 0 8px 24px rgba(0,0,0,0.07); /* Softer shadow */
    text-align: center;
    overflow: hidden; /* Ensure image stays within bounds */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition */
}

.gocebe-model-card img { /* Style for the image inside the card */
    width: 100%;
    /* height: 200px; Removed fixed height */
    aspect-ratio: 4 / 3; /* Adjust as needed for desired aspect ratio */
    object-fit: cover; /* Cover the area without distorting aspect ratio */
    border-radius: 8px; /* Slightly less rounded than the card */
    margin-bottom: 15px; /* Space below the image */
}

.gocebe-model-card h4 {
    font-size: 1.3em;
    margin-bottom: 10px; /* Reduced margin */
    color: #333;
}

/* .model-details-btn class'ı .cta-button ile değiştirileceği için bu blok kaldırılabilir veya .cta-button'a özel hale getirilebilir. */
/* Şimdilik .cta-button genel stilini kullanması için bu bloğu yorum satırına alıyorum. */
/*
.gocebe-model-card .model-details-btn {
    color: #007aff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}
*/

/* Model kartlarındaki cta-button için ek özelleştirme gerekirse buraya eklenebilir */
.gocebe-model-card .cta-button {
    padding: 10px 20px; /* Buton boyutunu biraz küçülttük */
    font-size: 0.9em; /* Yazı boyutunu biraz küçülttük */
    margin-top: 15px; /* Buton ile başlık arasına boşluk eklendi */
}

/* Responsive Styles for Göçebe Seçimi */
@media (max-width: 768px) {
    #gocebe-secimi { padding: 50px 4%; }
    #gocebe-secimi .container h2 { font-size: 2.2em; margin-bottom: 30px; } /* Removed !important */
    .gocebe-options-wrapper {
        flex-direction: row; /* Yan yana sıralama için değiştirildi */
        align-items: flex-start; /* Üstten hizalama */
        gap: 20px; /* Yan yana için boşluk ayarlandı */
        justify-content: space-between; /* Aralarında eşit boşluk bırak */
    }
    .gocebe-option {
        width: 48% ; /* Yan yana iki öğe için genişlik ayarlandı (%2 boşluk için) */
        max-width: none; /* Maksimum genişlik kısıtlaması kaldırıldı veya ayarlanabilir */
    }
    .gocebe-options-wrapper .left-line,
    .gocebe-options-wrapper .right-line {
        display: none; /* Hide lines on mobile */
    }
    .gocebe-details-section {
        padding: 20px 10px ; /* Removed !important */
    }
    .gocebe-details-section h3 {
        font-size: 1.8em ; /* Removed !important */
        margin-bottom: 20px ; /* Removed !important */
    }
    .gocebe-models-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Adjust grid for smaller screens */
        gap: 15px ; /* Removed !important */
    }
    .gocebe-model-card {
        padding: 15px ; /* Removed !important */
    }
    .gocebe-model-card h4 {
        font-size: 1.1em ; /* Removed !important */
        margin-bottom: 10px ; /* Removed !important */
    }
}

@media (max-width: 480px) {
    #gocebe-secimi { padding: 40px 3%; }
    #gocebe-secimi .container h2 { font-size: 1.8em ; margin-bottom: 25px ; } /* Removed !important */
    .gocebe-option {
        width: 95% ; /* Removed !important */
    }
    .gocebe-option h3 {
        font-size: 2em ; /* Removed !important */
    }
    .gocebe-option .description { /* Adjusted for new class */
        font-size: 1.1em;
    }
    .gocebe-option .vehicle-types, /* Adjusted for new class */
    .gocebe-option .dimensions { /* Adjusted for new class */
         font-size: 0.9em;
    }
    .gocebe-option .cta-button.toggle-details {
        padding: 12px 30px ; /* Removed !important */
        font-size: 1em ; /* Removed !important */
    }
    .gocebe-details-section {
        padding: 15px 5px ; /* Removed !important */
    }
    .gocebe-details-section h3 {
        font-size: 1.5em ; /* Removed !important */
    }
    .gocebe-models-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 10px ; /* Removed !important */
    }
    .gocebe-model-card {
        padding: 10px ; /* Removed !important */
    }
    .gocebe-model-card h4 {
        font-size: 1em ; /* Removed !important */
        margin-bottom: 8px ; /* Removed !important */
    }
}

/* Stiller for selected-gocebe-model-details bölümü (modal-gallery, modal-thumbnails vb. mevcut stilleri kullanacak) */
#selected-gocebe-model-details .modal-main-image {
    border: 1px solid #ddd; /* Ana resim için hafif bir çerçeve */
}

#selected-gocebe-model-details .modal-thumbnails img {
    width: 70px; /* Thumbnail boyutları */
    height: 70px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

#selected-gocebe-model-details .modal-thumbnails img:hover,
#selected-gocebe-model-details .modal-thumbnails img.active-thumbnail {
    border-color: #007aff; /* Aktif/hover thumbnail için vurgu */
}

#selected-gocebe-model-details .modal-features ul li {
    font-size: 1.05em;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
    /* JavaScript ile eklenecek olan ✓ işareti için padding-left'e gerek yok, span ile hallediliyor */
}
