:root {
    --primary: #FFC300;
    --bg-dark: #050505;
    --bg-light: #111111;
    --text-light: #f4f4f4;
    --runner-red: #7c0a1b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'NexaExtraLight', sans-serif;
}

a[href^="tel"] {
    color: inherit !important;
    text-decoration: none !important;
}

@font-face {
  font-family: 'NexaExtraLight';
  src: url('./fonts/Nexa-ExtraLight.ttf') format('opentype');
  font-style: normal;
}


@font-face {
  font-family: 'learningcurveregular';
  src: url('./fonts/learning_curve_regular_ot_tt.ttf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Alger';
  src: url('./fonts/ALGER.TTF') format('opentype');
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-yellow { color: var(--primary) !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }
.w-100 { width: 100%; }


.navbar {
    background-color: #000;
    border-bottom: 1px solid #222;
    height: 150px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-area {
    display: flex;
    align-items: center;
}

.nav-logo { 
    height: 140px; 
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 60px;
    margin: 0 auto;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-family: 'Alger', sans-serif;
	font-weight: 500;
    font-size: 23px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { 
    color: var(--primary); 
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-yellow {
    background-color: var(--primary);
    color: #000;
    padding: 12px 30px; 
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    transition: 0.3s;
    cursor: pointer;
}

.btn-yellow.outline {
    background-color: transparent;
    color: var(--primary);
}

.btn-yellow:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.hero {
    width: 100%;
    position: relative;
    margin-top: -150px; 
}

.wood-bg {
    background: url('https://res.cloudinary.com/f4ksoy/image/upload/v1775653113/fullmasa_v8grjs.png') bottom center / cover no-repeat;
    height: 580px;
    padding-top: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    height: 300px;
}

.hero-text-wrapper {
    position: absolute;
    left: 8%;
    z-index: 10;
}

.hero-left-text {
    font-family: 'learningcurveregular', sans-serif;
    color: #fff;
    font-size: 5rem;
    transform: rotate(-20deg);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    line-height: 1;
    transition: opacity 0.3s ease; 
    opacity: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plate-slide {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid #ddd;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, z-index 0.6s;
    opacity: 0;
    z-index: 0;
    transform: translateX(0) scale(0.5);
}

.plate-slide.active {
    opacity: 1;
    z-index: 3;
    transform: translateX(0) scale(1);
}

.plate-slide.prev {
    opacity: 0.6;
    z-index: 2;
    transform: translateX(-655px) scale(0.65);
}

.plate-slide.next {
    opacity: 0.6;
    z-index: 2;
    transform: translateX(655px) scale(0.65);
}

.plate-slide.hidden {
    opacity: 0;
    z-index: 1;
    transform: translateX(0) scale(0.3);
}

.hero-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-controls .control, 
.hero-controls .helm-icon {
    position: absolute;
    pointer-events: auto;
}

#prevBtn, #nextBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s;
}

#prevBtn {
    left: 375px;
    bottom: 25px;
}

#nextBtn {
    right: 375px;
    bottom: 25px;
}

#prevBtn:hover, #nextBtn:hover {
    color: var(--primary);
}

.custom-arrow-icon {
    height: 35px;
    width: auto;
    margin-top: -10px;
}

.helm-icon-wrapper {
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    overflow: hidden;
    pointer-events: auto;
}

.custom-helm {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-menu-tab {
    position: fixed;
    right: 0;
    top: 200px;
    z-index: 9999;
    background-color: var(--primary);
    color: #000;
    padding: 20px 15px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-menu-tab:hover {
    background-color: #fff;
    transform: scale(1.05);
    transform-origin: right;
}

.custom-menu-icon {
    height: 55px;
    width: auto; 
    margin-top: 8px; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); 
}

.service-info {
    position: relative; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
    padding: 0 100px; 
    box-sizing: border-box; 
    height: 650px; 
    overflow: hidden; 
}

.cursive-title {
    font-family: 'NexaExtraLight', sans-serif;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    color: #ccc;
    padding: 0;
}

.info-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px; 
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-list .list-img-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
    background: transparent;
    padding: 2px;
    border: 1px solid #FFC300;
}

.info-list i { 
    width: 32px; 
    text-align: center;
    font-size: 1.2rem;
}

.info-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.info-logo img {
    max-width: none !important; 
    display: block;
}

.logo-top-icon {
    width: 450px;
    height: auto;
    margin-top: -70px;
    z-index: 11;
}

.main-center-logo {
    width: 550px;
    height: auto;
}

.trusted-brands {
    padding: 70px 0 60px 0;
    position: relative;
}

.brands-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    background: linear-gradient(145deg, #111111 0%, #050505 100%);
    border: 2px solid rgba(255, 195, 0, 0.2); 
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.brand-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary);
    opacity: 0.8; 
    transition: opacity 0.3s ease, width 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 195, 0, 0.15);
}

.brand-card:hover::before {
    opacity: 1;
    width: 8px;
}

.brand-img-container {
    width: 75px;
    height: 75px;
    border-radius: 14px;
    background: rgba(255, 195, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    padding: 8px;
}

.brand-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

.brand-card:hover .brand-img-container {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-info h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.brand-info span {
    color: #bbb;
    font-size: 1rem;
    font-weight: 400;
}

.container:has(.bestsellers-outside-title),
.bestsellers .container {
    max-width: 100%;
    padding: 0 35px;
}

.bestsellers-outside-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #f4f4f4;
    margin-bottom: 10px;
    padding-top: 20px;
}

.bestsellers {
    background-color: #FFC300;
    padding: 30px 0 30px 0; 
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 90px;
    margin-bottom: 0; 
}

.product-card { 
    text-align: left; 
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); 
}

.product-card p { 
    color: #111111; 
    font-size: 1.2rem; 
    font-weight: 600;
    line-height: 1.4; 
    word-wrap: break-word; 
}

.center-btn { 
    position: absolute;
    bottom: 0; 
    left: 50%;
    transform: translate(-50%, 50%); 
    z-index: 10; 
}

.bestsellers .btn-yellow.rounded { 
    background-color: #FFC300; 
    color: #111111; 
    border: 3px solid #111111; 
    border-radius: 50px; 
    padding: 12px 80px; 
    font-size: 1.7rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.bestsellers .btn-yellow.rounded:hover {
    background-color: #111111;
    color: #FFC300;
}

.service-info {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 80px 100px;
    box-sizing: border-box; 
    min-height: 400px; 
}

.info-col {
    width: 380px;
    flex-shrink: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cursive-title {
    color: #fff;
    font-size: 2.2rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 20px;
    text-align: center;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.03); 
    border: 2px solid var(--primary);
    border-radius: 15px; 
    padding: 30px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    min-height: 220px; 
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-card .info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card .info-list li {
    font-size: 1.1rem;
    font-weight: 1000;
    color: #e0e0e0;
    display: flex;
    align-items: center;
}

.info-card .info-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
    margin-right: 10px;
}

.info-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none; 
}

.info-logo img {
    max-width: 220px; 
    display: block;
}

.payment-methods {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: start;
}

.payment-card {
    background: #252525;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 240px;
    border: 1px solid #333;
}

.payment-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
}

.payment-logo-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 10px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    color: #666;
    font-size: 0.8rem;
    border: 2px dashed #444;
}

.payment-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.payment-card h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

.about-section {
    padding: 200px 0 0 0;
    background-color: var(--bg-light);
}

.about-section .section-title { 
    color: #f4f4f4; 
    font-size: 5rem;
    font-weight: 300;
    margin-left: 10px;
    margin-bottom: 10px; 
}

.about-flex {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.about-image { 
    flex: 1; 
}

.about-image img { 
    width: 100%; 
    height: 800px;
    object-fit: cover; 
    display: block; 
}

.about-text-box {
    flex: 1;
    background-color: var(--primary);
    color: #111111;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.7;
}

.about-text-box p {
    margin-bottom: 20px;
}

.about-text-box p:last-child {
    margin-bottom: 0;
}

.highlight-quote {
    text-align: center;
    font-size: 1.3rem;
    margin: 25px 0;
    padding: 20px 10px;
    border-top: 2px dashed #111111;
    border-bottom: 2px dashed #111111;
    color: #000;
}

.app-promo {
    background-color: #111111;
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1775657557/desen_zbgsfb.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding-top: 50px;
    overflow: hidden; 
}

.promo-header {
    margin-bottom: 60px;
}

.huge-title {
    padding-top: 250px;
    font-size: 90px;
    font-weight: 300; 
    color: #fff; 
    line-height: 1.1;
    margin-bottom: 15px; 
}

.subtitle { 
    color: var(--primary);
    font-size: 1.3rem; 
    line-height: 1.6; 
    font-weight: 400;
}

.app-flex-widescreen {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 0 110px; 
    gap: 100px; 
}

.app-image-new {
    position: relative;
    flex-shrink: 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.download-block {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.qr-code {
    width: 110px;
    height: 110px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.download-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary); 
    line-height: 1;
    text-align: left;
}

.app-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
}

.feature-item {
    padding: 30px 50px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.feature-item.transparent-bg {
    background-color: transparent;
    padding-left: 0;
}

.feature-item.solid-bg {
    background-color: #534741; 
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.feature-item.solid-bg-2::before {
    content: "";
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1775657556/coin_xflr1f.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: -150px;
    left: 90%;
    transform: translateX(-50%);
    width: 100%;
    height: 200px;
    display: block;
    z-index: 1;
    pointer-events: none;
}

.feature-item.solid-bg-2 {
    background-color: #4D4D4D; 
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    position: relative;
    z-index: 1;
}

.feature-item.solid-bg-2::after {
    content: "";
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1775657555/sale_e4jybr.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    bottom: -350px;
    left: 90%;
    transform: translateX(-50%);
    width: 100%;
    height: 350px;
    display: block;
    z-index: 1;
    pointer-events: none;
}


.feat-content { 
    color: #e0e0e0; 
    font-size: 25px;
    line-height: 1.4;
    font-weight: 400;
}

.feat-content-2 {
    width: 80%; 
    color: #e0e0e0; 
    font-size: 25px;
    line-height: 1.4;
    font-weight: 400;
}

.feat-content strong { 
    color: var(--primary); 
    font-size: inherit;
    font-weight: 700;
}

.huge-feat-title {
    font-size: 43px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.app-promo-footer {
    width: 100%;
    padding: 50px 35px 20px 35px; 
    background-color: transparent;
}

.app-promo-footer p {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
}

.accordion-section { 
    margin-top: 60px; 
    margin-bottom: 60px;
}

.yellow-accordion {
    background-color: var(--primary);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.yellow-accordion summary {
    padding: 20px 30px;
    color: #111111;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.yellow-accordion summary::-webkit-details-marker { 
    display: none; 
}

.acc-title {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.acc-title i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

details[open].yellow-accordion summary .acc-title i {
    transform: rotate(180deg);
}

.acc-preview {
    font-weight: 500;
    font-size: 1rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
}

.yellow-accordion .content { 
    padding: 0 30px 25px 30px;
    color: #222222; 
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-section {
    display: flex;
    gap: 50px;
    padding: 40px 0 80px;
    border-top: 1px solid #333;
}

.contact-info, .contact-form { flex: 1; }

.contact-info ul { list-style: none; margin-top: 20px; }
.contact-info li { margin-bottom: 15px; color: #ccc; display: flex; gap: 10px; align-items: center; }
.contact-info hr { border-color: #333; margin: 20px 0; }

.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a {
    width: 40px; height: 40px;
    background-color: #222; color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; text-decoration: none; font-size: 1.2rem;
}

.contact-form form { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 12px;
    background-color: #1a1a1a; border: 1px solid #333;
    color: #fff; border-radius: 5px;
}

footer {
    background-color: #000;
    padding: 40px 0 20px;
    border-top: 2px solid #222;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: min-content;
}

.footer-logo-col img { 
    width: 120px; 
}

.footer-logo-col h1 {
    font-size: 1.4rem;
    color: #fff;
    white-space: nowrap;
    margin-top: 5px;
    margin-bottom: 15px;
}

.footer-logo-col p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.footer-links h4, .footer-contact h4 { color: var(--primary); margin-bottom: 15px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #888; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #fff; }

.footer-contact p { color: #888; margin-bottom: 8px; font-size: 0.9rem;}

.footer-bottom {
    display: flex;
    padding: 0 35px;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
    margin-top: 40px;
    border-top: 1px solid #111;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.location-section {
    padding: 50px 20px 90px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-light);
}

.location-header {
    text-align: center;
    margin-bottom: 25px;
}

.location-header h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.location-header p {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
}

.map-container {
    width: 100%;
    max-width: 900px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.map-container:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 195, 0, 0.15);
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.1);
}

.sabit-buton {
    position: fixed;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 100;
}

.sabit-buton img {
    width: 2rem;
    height: auto;
}

.sabit-buton:hover {
    transform: scale(1.1);
}

.sabit-buton.telefon {
    background-color: #25d366;
    left: 2.3rem;
}

.sabit-buton.whatsapp {
    background-color: #25d366;
    right: 2.3rem;
}

.buton-etiket {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid #333;
    pointer-events: none;
}

.buton-etiket::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1a1a1a transparent transparent transparent;
}

.charity-page {
    padding: 150px 0 100px 0;
    background-color: var(--bg-light);
    min-height: 80vh;
}

.charity-header {
    margin-bottom: 60px;
}

.huge-charity-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.charity-subtitle {
    font-size: 1.4rem;
    color: #ccc;
    font-weight: 300;
}

.charity-flex {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #1a1a1a;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.charity-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
}

.charity-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    background-color: #333;
}

.charity-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: #000;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(255, 195, 0, 0.3);
    border: 4px solid #1a1a1a;
}

.charity-badge i {
    font-size: 2.5rem;
    color: #d11a2a;
}

.charity-content-box {
    flex: 1;
    color: #e0e0e0;
}

.charity-content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.2;
}

.charity-content-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #bbb;
}

.charity-content-box strong {
    color: #fff;
    font-weight: 600;
}

.highlight-quote-box {
    background-color: rgba(255, 195, 0, 0.05);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.highlight-quote-box p {
    color: var(--primary);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.highlight-quote-box i {
    font-size: 1.5rem;
    opacity: 0.5;
    margin: 0 10px;
}

.campaign-page {
    padding: 150px 0 100px 0;
    background-color: var(--bg-light);
    min-height: 80vh;
}

.campaign-page .container {
    max-width: 1400px !important; 
    width: 95%;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px; 
    margin-top: 60px;
}

.campaign-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 195, 0, 0.15);
    border-color: var(--primary);
}

.camp-img-box {
    width: 100%;
    height: 250px;
    position: relative;
    background-color: #0d0d0d;
}

.camp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--runner-red);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.camp-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.camp-content h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.camp-desc {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.camp-desc-2 {
    color: #bbb;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.6;
    padding-bottom: 25px;
    flex-grow: 1;
}

.camp-footer {
    width: 100%;
}

.camp-footer .btn-yellow {
    font-size: 1.1rem;
    padding: 10px;
}

.siparis-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.siparis-modal-content {
    background-color: var(--bg-light);
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 15px 35px rgba(255, 195, 0, 0.1);
    overflow: hidden;
    animation: modalAcilis 0.3s ease-out forwards;
}

@keyframes modalAcilis {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    background-color: var(--primary);
    color: #111;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 { font-size: 1.3rem; font-weight: 700; margin: 0; }
.close-modal { font-size: 1.8rem; font-weight: bold; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: #fff; }

.modal-body { padding: 25px; }

.modal-body .input-group { margin-bottom: 15px; }
.modal-body input[type="text"], .modal-body input[type="tel"] {
    width: 100%; padding: 15px;
    background-color: #1a1a1a; color: #fff;
    border: 1px solid #333; border-radius: 8px; font-size: 1rem;
}
.modal-body input:focus {
    outline: none; border-color: var(--primary);
}

.modal-footer { padding: 20px 25px; background-color: #0a0a0a; border-top: 1px solid #333; }

#yukariCikBtn {
    display: none;
    position: fixed;
    background-color: var(--primary);
    color: #111;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#yukariCikBtn:active {
    transform: scale(0.9);
}

#yukariCikBtn.goster {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .nav-container { 
        padding: 0 3vw;
        gap: 2vw; 
    } 
    .nav-logo { height: clamp(80px, 8vw, 110px) !important; }
    .nav-links { gap: 2vw; }
    .nav-links a { 
        font-size: clamp(16px, 1.5vw, 19px);
        white-space: nowrap;
    } 
    .nav-buttons { gap: 1vw; } 
    .btn-yellow { 
        font-size: clamp(14px, 1.4vw, 18px); 
        padding: 0.8vw 1.5vw; 
        white-space: nowrap;
    }
    .hero-content { padding: 0 2vw; }
    .hero-text-wrapper { left: 5vw; z-index: 10; }
    .hero-left-text { font-size: clamp(3rem, 6vw, 5rem); }
    .plate-slide.prev { transform: translateX(-32vw) scale(0.65); }
    .plate-slide.next { transform: translateX(32vw) scale(0.65); }
    #prevBtn { left: 8vw; }
    #nextBtn { right: 8vw; }
    .service-info { 
        padding: 60px 3vw;
        height: auto; 
        min-height: 500px;
    }
    .main-center-logo { width: 100%; max-width: 350px; }
    .logo-top-icon { width: 100%; max-width: 250px; margin-top: -20px; }
    .info-col { width: 35%; max-width: 350px; } 
    .info-logo img { width: 50%; max-width: 150px; }
    .logo-top-icon { margin-top: -200px;}
    .cursive-title { font-size: clamp(1.8rem, 2vw, 2.5rem); }
    .info-card { padding: 20px; min-height: 250px; }
    .info-card .info-list li { font-size: clamp(0.9rem, 1vw, 1.1rem); }
    .huge-title { font-size: clamp(45px, 5vw, 65px); padding-top: 80px; }
    .products-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 3vw; 
        padding-bottom: 60px;
    } 
    .product-card img { height: clamp(200px, 20vw, 250px); }
    .app-image-new  { margin: 0 auto; width: 50%; max-width: 350px; }
    .app-image-new img { width: 100%; height: auto; }
    .about-image img { height: 100%; min-height: 350px; object-fit: cover; }
    .about-text-box { padding: 40px 4vw; font-size: clamp(1.1rem, 1.5vw, 1.5rem); }
    .app-flex-widescreen { padding: 0 4vw; gap: 4vw; }
    .feat-content, .feat-content-2 { font-size: clamp(18px, 2vw, 25px); }
    .huge-feat-title { font-size: clamp(24px, 3vw, 43px) !important; }
    .accordion-section { margin: 40px 0; }
    .contact-section { flex-direction: column; gap: 30px; padding: 30px 4vw; }
	.campaign-page { padding: 120px 0 80px 0; }
	.campaign-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 992px) {
    .navbar { 
        height: auto; 
        padding: 2vw 0; 
        border-bottom-left-radius: 4vw; 
        border-bottom-right-radius: 4vw; 
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
    }
    .nav-logo { 
        height: clamp(60px, 9vw, 85px) !important; 
    } 
    .navbar.nav-hidden { 
        transform: translateY(calc(-1 * (clamp(60px, 9vw, 85px) + 2vw + 5px))); 
    }
    .nav-container { flex-direction: column; gap: 20px; padding: 0 15px; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .nav-links a { font-size: 16px; }
    .btn-yellow { font-size: 16px; padding: 10px 20px; }
    .wood-bg { height: auto; min-height: 550px; padding-top: 40px; padding-bottom: 50px; flex-direction: column;}
    .hero-content { height: auto; margin-bottom: 20px; }
    .hero-left-text { position: relative; left: 0; transform: none; text-align: center; font-size: 4rem; margin-bottom: 30px; }
    .plate-slide.prev, .plate-slide.next { 
        opacity: 0 !important; visibility: hidden; transform: scale(0) !important; pointer-events: none;
    }
    .plate-slide.active { width: 190px !important; height: 190px !important; margin-bottom: -200px; }
    .hero-controls { height: 100px; bottom: -10px; }
    .custom-helm { width: 130px; height: 130px; }
    .helm-icon-wrapper { width: 130px; height: 65px; bottom: 10px;}
    #prevBtn { left: 15vw; font-size: 1.3rem;} 
    #nextBtn { right: 15vw; font-size: 1.3rem;}
    .custom-arrow-icon { height: 25px; margin-top: -5px; }
    .about-flex, .contact-section, .footer-flex, .app-flex-widescreen, .charity-flex { flex-direction: column; text-align: center; gap: 40px; }
    .about-flex { gap: 0 !important; }
    .about-section { padding-top: 150px; }
    .about-image img, .charity-main-img { height: 400px; object-fit: cover; }
    .about-section .section-title { margin-left: 0; font-size: 3.8rem; text-align: center; }
    .trusted-brands { padding: 50px 0 20px 0; }
    .premium-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .brand-card { padding: 15px; gap: 10px; }
	.brand-img-container { 
        width: 55px;
        height: 55px; 
        padding: 5px;
    }
	.brand-info h4 { font-size: 1rem; }
    .brand-info span { font-size: 0.85rem; }
    .service-info { height: auto; padding: 50px 20px; flex-direction: column; gap: 50px; }
    .info-logo { position: relative; left: 0; top: 0; transform: none; }
    .logo-top-icon { display: none !important; }
    .main-center-logo { width: 100%; max-width: 300px; }
    .info-col { width: 100%; max-width: 600px; }
    .app-image-new { margin: 0 auto; width: 100%; max-width: 400px; }
    .app-image-new img { max-width: 100%; height: auto !important; } 
    .app-features { width: 100%; padding: 0 15px; }
    .feature-item { flex-direction: column; align-items: center; padding: 30px 20px; text-align: center; }
    .feature-item.transparent-bg { padding-left: 20px; }
    .feature-item.solid-bg-2::before, .feature-item.solid-bg-2::after { display: none; }
    .download-block { flex-direction: column; margin-top: 20px; }
    .download-text { font-size: 2rem; text-align: center; flex-direction: row; justify-content: center; align-items: center; gap: 5px !important; width: 100%;}
    .download-text img { height: 90px !important; }
    .huge-charity-title { font-size: 3rem; }
    .charity-badge { position: relative; bottom: 0; right: 0; margin-top: 15px; display: inline-flex; justify-content: center; width: 100%;}
    .footer-logo-col { width: 100%; } 
    .footer-logo-col h1 { white-space: normal; line-height: 1.3; }
    .campaign-page { padding: 120px 0 80px 0; }
	.campaign-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	#yukariCikBtn {
        display: flex;
        bottom: 8rem;
        right: 2.3rem;
    }
}

@media (max-width: 768px) {
    .navbar.nav-hidden { transform: translateY(-95px); }
    .nav-logo { height: 70px !important; }
    .plate-slide.active { width: 200px !important; height: 200px !important;  margin-bottom: 0px; }
    .custom-helm { width: 100px; height: 100px; }
    .helm-icon-wrapper { width: 100px; height: 50px; bottom: 10px;}
    #prevBtn { left: 10vw; font-size: 1rem; }
    #nextBtn { right: 10vw; font-size: 1rem; }
    .logo-top-icon { display: none !important; }
    .custom-arrow-icon { width: 120px; height: auto; }
    .wood-bg { min-height: 450px; padding-bottom: 20px; }
    .huge-title { font-size: 40px; padding-top: 50px; line-height: 1.2; }
    .huge-feat-title { font-size: 26px !important; }
    .feat-content, .feat-content-2 { font-size: 16px; width: 100%; text-align: center; }
    .premium-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .brand-card { padding: 15px 10px; flex-direction: column; text-align: center; gap: 10px; }
    .brand-card::before { width: 100%; height: 4px; left: 0; top: 0; }
    .brand-card:hover::before { height: 6px; width: 100%; }
	.payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    .payment-card {
        width: 100%;
        padding: 15px 10px;
    }
    .payment-logo-placeholder {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
        padding: 5px;
    }
    
    .payment-card h4 {
        font-size: 0.95rem;
    }
    .bestsellers-outside-title { font-size: 1.8rem; text-align: center; padding-top: 10px;}
    .cursive-title { font-size: 2rem; }
    .hero-left-text { font-size: 3rem; }
    .custom-arrow-icon { height: 20px; }
    .products-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 50px; }
    .bestsellers .btn-yellow.rounded { font-size: 1.1rem; padding: 10px 30px; width: 100%; }
    .about-section { padding-top: 120px; }
    .about-flex { gap: 0 !important; }
    .product-card { text-align: center; max-width: 350px; margin: 0 auto; }
    .product-card img { height: 200px; }
    .service-info { padding: 40px 15px; }
    .main-center-logo { max-width: 250px; }
    .logo-top-icon { max-width: 180px; margin-top: -15px; }
    .download-block { flex-direction: column; margin-top: 20px; }
    .download-text { font-size: 1.8rem; text-align: center; flex-direction: row; justify-content: center; align-items: center; gap: 2px !important; width: 100%;}
    .download-text img { height: 80px !important; }
    .mobildedegistir { height: 40px !important; margin-left: 4px !important; }
    .qr-code { width: 80px; height: 80px; }
    .acc-title { font-size: 1.1rem; }
    .acc-preview { display: none; }
    .yellow-accordion summary { justify-content: center; padding: 15px; }
    .huge-charity-title { font-size: 2.2rem; }
    .charity-badge { position: relative; bottom: 0; right: 0; margin-top: 15px; display: inline-flex; justify-content: center; width: 100%;}
    .charity-flex { padding: 20px; border-radius: 20px; }
    .charity-main-img { height: 250px; }
    .charity-content-box h2 { font-size: 1.8rem; }
    .highlight-quote-box p { font-size: 1.1rem; }
    .contact-form { padding-bottom: 50px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; padding: 20px 15px; }
	.location-section {
        padding: 40px 15px 110px 15px;
    }
    
    .location-header h2 {
        font-size: 1.8rem;
    }
    
    .location-header p {
        font-size: 1rem;
    }

    .map-container {
        height: 250px;
        border-radius: 15px;
    }
    .about-text-box { padding: 30px 20px; font-size: 1.1rem; }
    .campaign-page { padding: 100px 0 50px 0; }
    .camp-img-box { height: 220px; }
    .camp-content { padding: 25px; }
    .camp-content h3 { font-size: 1.4rem; }
    .camp-desc { font-size: 1rem; }
}

@media (max-width: 576px) {
    .nav-buttons { flex-direction: column; width: 100%; }
    .btn-yellow { width: 100%; font-size: 15px; }
    .plate-slide.active { margin-top: 120px; width: 120px !important; height: 120px !important; }
    #prevBtn { left: 5vw; }
    #nextBtn { right: 5vw; }
    .container { padding: 0 15px; }
    .floating-menu-tab { font-size: 1rem; padding: 8px; top: 300px; border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
    .custom-menu-icon { height: 25px; margin-top: 5px; }
    .premium-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .brand-card { padding: 12px 5px; border-radius: 12px; }
    .brand-img-container { 
        width: 50px;
        height: 50px; 
        border-radius: 10px; 
        padding: 4px;
    }    .brand-info h4 { font-size: 0.9rem; margin-bottom: 2px; }
    .brand-info span { font-size: 0.75rem; }
    .sabit-buton { width: 3rem; height: 3rem; bottom: 1rem; right: 1rem; }
    .sabit-buton img { width: 1.5rem; }
    .info-card { padding: 20px 15px; }
    .info-card .info-list li { font-size: 0.9rem; flex-wrap: wrap; justify-content: center; text-align: center;} 
    .info-card .info-list li i { margin-right: 0; margin-bottom: 5px; width: 100%;}
    .app-promo-footer p { font-size: 1.4rem; }
    .campaign-grid { grid-template-columns: 1fr; gap: 25px; }
    .camp-img-box { height: 200px; }
	#yukariCikBtn {
        width: 3rem;
        height: 3rem;
        bottom: 9rem;
        right: 1rem;
        font-size: 1.2rem;
    }
}