:root {
    --primary-color: #001f3f;
    /* Dark Navy */
    --secondary-color: #39CCCC;
    /* Teal/Light Blue accent */
    --accent-color: #FF851B;
    /* Orange for urgent CTAs if needed, or stick to blues */
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #001830;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Top Info Bar (NEW) */
.top-info-bar {
    background: linear-gradient(90deg, #001f3f, #003366);
    color: var(--white);
    font-size: 0.85rem;
    padding: 6px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1001;
    animation: topInfoSlideDown 0.6s ease-out;
    overflow: hidden;
    /* önemli: taşan kısmı gizle */
}

/* İçerik seti */
.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* Kayan şerit (2 set top-info-content içeriyor) */
.top-info-track {
    display: flex;
    width: max-content;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.top-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.top-info-badge i {
    font-size: 0.9rem;
}

.top-info-text {
    opacity: 0.9;
}

.top-info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background-color: transparent;
    font-weight: 500;
    cursor: pointer;
}

.top-info-link i {
    font-size: 0.9rem;
}

.top-info-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.top-info-divider {
    opacity: 0.7;
}

.top-info-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-info-status .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2ecc40;
}

.status-text {
    opacity: 0.95;
}

@keyframes topInfoSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobilde top bar: tek satır + kayan içerik */
@media (max-width: 768px) {
    .top-info-bar {
        padding: 4px 0;
        overflow: hidden;
        font-size: 0.8rem;
    }

    .top-info-track {
        display: flex;
        align-items: center;
        gap: 40px;
        white-space: nowrap;
        animation: topInfoMarquee 26s linear infinite;
        will-change: transform;
    }

    .top-info-content {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }

    .top-info-left,
    .top-info-right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    /* Metin mobilde de görünsün ama tek satır kalsın */
    .top-info-text {
        display: inline;
    }

    /* Status yazısı da görünsün */
    .top-info-status .status-text {
        display: inline;
        margin-left: 4px;
        /* opsiyonel, nokta ile yazı arasında az boşluk */
    }
}

/* Top bar için kayan animasyon */
@keyframes topInfoMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjust based on actual logo aspect ratio */
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
    gap: 5px;
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(255, 82, 82, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Marketplace Link - mobile + desktop */
.marketplace-link-mobile-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(255, 133, 27, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 133, 27, 0.3);
    animation: pulse-border 2s infinite;
    white-space: nowrap;
}

.marketplace-link-mobile-header i {
    color: var(--accent-color);
}

@keyframes pulse-border {
    0% {
        border-color: rgba(255, 133, 27, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 133, 27, 0.2);
    }

    50% {
        border-color: rgba(255, 133, 27, 0.8);
        box-shadow: 0 0 0 4px rgba(255, 133, 27, 0.1);
    }

    100% {
        border-color: rgba(255, 133, 27, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 133, 27, 0);
    }
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Yeni: Hero highlight ikonları */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background-color: rgba(0, 31, 63, 0.03);
}

.hero-highlight i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #777;
    border-radius: 10px;
    font-size: 1.2rem;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* About Section */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 1.9rem;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.about-content {
    display: grid;
    gap: 40px;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 31, 63, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-card .icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 8px;
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.brands-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .brands-grid.four-columns {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .brands-grid.four-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brand-item {
    background: var(--white);
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}

.brand-item:hover {
    border-color: #ccc;
    transform: scale(1.02);
}

.brand-item img {
    max-height: 60px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Group Companies */
.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.group-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.group-logo {
    height: 60px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.group-card p {
    margin-bottom: 20px;
    color: #666;
}

/* Second Hand Section */
.secondhand-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.secondhand-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.secondhand-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.secondhand-content .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.secondhand-content .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.info-list {
    margin: 30px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.opening-hours {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

.opening-hours h4 {
    margin-bottom: 15px;
}

.opening-hours table {
    width: 100%;
}

.opening-hours td {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.opening-hours tr:last-child td {
    border-bottom: none;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.developer a {
    color: var(--white);
}

/* FAB */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.fab-main:hover {
    transform: scale(1.1);
}

.fab-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.fab-container.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    transition: var(--transition);
}

.fab-option:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-logo {
    margin-bottom: 20px;
}

.mobile-menu-overlay nav ul {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-menu-overlay nav ul li {
    margin: 20px 0;
}

.mobile-menu-overlay nav ul li a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {

    .header-actions,
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .section {
        padding: 50px 0;
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.carousel-slide {
    min-width: 250px;
    list-style: none;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 31, 63, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.mobile-menu-overlay .marketplace-link-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact-list i {
    width: 20px;
    text-align: center;
    color: var(--white);
}

/* Staggered Animation Delays */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.brand-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.brand-item:nth-child(even) {
    animation-delay: 0.2s;
}

/* Global Liveliness (Applied to Desktop & Mobile) */
body {
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.section {
    position: relative;
    z-index: 1;
}

.mobile-menu-overlay nav ul {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-menu-overlay nav ul li {
    margin: 20px 0;
}

.mobile-menu-overlay nav ul li a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {

    .header-actions,
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .section {
        padding: 50px 0;
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.carousel-slide {
    min-width: 250px;
    list-style: none;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 31, 63, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.mobile-menu-overlay .marketplace-link-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact-list i {
    width: 20px;
    text-align: center;
    color: var(--white);
}

/* Staggered Animation Delays */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.brand-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.brand-item:nth-child(even) {
    animation-delay: 0.2s;
}

/* Global Liveliness (Applied to Desktop & Mobile) */
body {
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.section {
    position: relative;
    z-index: 1;
}

.bg-light {
    background-color: rgba(244, 244, 244, 0.95);
}

/* Mobile Liveliness */
@media (max-width: 768px) {

    /* Specific mobile adjustments if needed */
    .contact-wrapper {
        flex-direction: column;
    }

    .mobile-header-actions {
        display: block;
        margin-right: 15px;
    }
}

.bg-light {
    background-color: rgba(244, 244, 244, 0.95);
}

/* Mobile Liveliness */
@media (max-width: 768px) {

    /* Specific mobile adjustments if needed */
    .contact-wrapper {
        flex-direction: column;
    }
}

/* Background Pattern for Liveliness */
.bg-pattern-icons {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23001f3f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Apply pattern to light sections */
.bg-light {
    background-color: rgba(244, 244, 244, 0.95);
}

/* Tooltip for marketplace */
.marketplace-link-mobile-header {
    position: relative;
}

.marketplace-link-mobile-header::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    transform-origin: top center;
}

.marketplace-link-mobile-header:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(3px);
}

/* Mobilde hero iconlu yazıların sağdan sola sürekli akması */
@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
        gap: 5px;
    }

    .hero-highlights {
        width: 100%;
        overflow: hidden;
        padding: 8px 0;
    }

    .hero-highlights-track {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        /* Tek satır halinde kalsın */
        white-space: nowrap;
        /* Sürekli sağdan sola kayan animasyon */
        animation: heroHighlightsMarquee 18s linear infinite;
        will-change: transform;
    }

    .hero-highlight {
        flex: 0 0 auto;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-content {
        padding: 0 16px;
        /* sağ-sol biraz nefes alsın */
    }

    .hero-text h1 {
        font-size: 1.8rem;
        /* daha küçük başlık */
        line-height: 1.25;
        word-break: normal;
    }

    .hero-text p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text h1 {
        font-size: clamp(1.7rem, 5vw, 2.5rem);
    }
}

/* Track genişliği ~%200 olduğu için -50% kayınca loop tamamlanmış olur */
@keyframes heroHighlightsMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* DESKTOP: Hero iconlu yazılar normal, yalnızca ilk 3 tanesi görünsün */
@media (min-width: 769px) {
    .hero-highlights {
        overflow: visible;
        padding: 0;
    }

    .hero-highlights-track {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 20px;
        white-space: normal;
        animation: none;
        /* Masaüstünde kayma yok */
        transform: none;
    }

    /* 4. ikon ve sonrası desktop'ta gizlenir (2. set) */
    .hero-highlights-track .hero-highlight:nth-child(n + 4) {
        display: none;
    }

    .top-info-track {
        display: block;
        /* Artık flex olmak zorunda değil */
        white-space: normal;
        /* Normal satır kırılımı */
        animation: none;
        /* Masaüstünde kayma yok */
        transform: none;
    }

    /* İlk set normal görünsün */
    .top-info-track .top-info-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    /* İkinci kopyayı masaüstünde sakla */
    .top-info-track .top-info-content:nth-child(2) {
        display: none;
    }
}

/* --- YENİ: Sadece hero başlık & paragrafını mobilde taşıp kesilmeden sığdırmak için --- */
@media (max-width: 768px) {

    /* Hero bölümünde yatay taşmayı kapat */
    .hero-section {
        overflow-x: hidden;
    }

    .hero-content {
        width: 100%;
        margin: 0;
    }

    .hero-text.hero-text--mobile-fit {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .hero-text.hero-text--mobile-fit h1 {
        font-size: clamp(1.4rem, 6vw, 2rem);
        line-height: 1.25;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text.hero-text--mobile-fit p {
        font-size: 1rem;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    /* Kayan ikonlu yazılar kenarlara yapışsın */
    .hero-highlights {
        padding: 0 !important;
        margin-left: -30px !important;
        margin-right: -30px !important;
        width: calc(100% + 60px) !important;
    }

    .hero-highlights-track {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
    }
}

.smiley-img {
    max-width: 90px;
    height: auto;
    display: block;
}

/* Notification Toast - Premium Style */
.notification-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background-color: var(--white);
    color: var(--text-color);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-width: 300px;
    max-width: 400px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.notification-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.notification-toast i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-toast.success i {
    color: #2ecc40;
}

.notification-toast.error i {
    color: #ff4136;
}

.notification-toast span {
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
}

.toast-progress {
    height: 4px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.toast-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    animation: toastProgress 5s linear forwards;
}

.notification-toast.success .toast-progress::after {
    background-color: #2ecc40;
}

.notification-toast.error .toast-progress::after {
    background-color: #ff4136;
}

@keyframes toastProgress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden;
}

/* Form Inline Alert (Kullanıcı kesin görsün) */
.form-alert {
    display: none;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.form-alert.show {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert.success {
    background: rgba(46, 204, 64, 0.12);
    border-color: rgba(46, 204, 64, 0.35);
    color: #0f5f1f;
}

.form-alert.error {
    background: rgba(255, 65, 54, 0.10);
    border-color: rgba(255, 65, 54, 0.35);
    color: #7a1410;
}

.form-alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .notification-toast {
        top: auto;
        bottom: 18px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(20px) scale(0.98);
        min-width: calc(100% - 32px);
        max-width: 520px;
    }

    .notification-toast.show {
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Responsive Google Map */
.map-container {
    width: 100%;
    margin-top: 30px;
}

.map-embed {
    position: relative;
    width: 100%;
    max-width: 1200px;   /* istersen kaldır, container zaten 1200px */
    margin: 0 auto;      /* masaüstünde ortala */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    background: #eee;

    /* 16:9 oran (istersen 4:3 yapabiliriz) */
    aspect-ratio: 16 / 9;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-embed {
        aspect-ratio: 4 / 3;
    }
}

html, body {
    overflow-x: hidden;
}
