:root {
    --nav-color: #1a1a1e;
    --nav-color-light: #2a2a2f;
    --nay: #FF4242;
    --nay-soft: rgba(255, 66, 66, 0.1);
    --nay-hover: #e63b3b;
    --text-color: #E7E9ED;
    --text-muted: #94a3b8;
    --bg-color: #f8fafc;
    --warning: #ffb70a;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(10px);
}

html {
    scroll-behavior: smooth;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

a {
    color: var(--nay);
    text-decoration: none;
    transition: font-weight 0.2s ease;
}

.h-container {
    background-color: var(--nav-color);
    color: var(--text-color);
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
}

.h-container .h-content {
    margin-inline: auto;
    width: 1000px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.h-container .h-content h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.h-container .info-box {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    border-left: 2px solid var(--nay);
    padding: 2rem;
}

.info-box .title {
    color: var(--text-color) !important;
}

.d-none {
    display: none;
}

.belge-category {
    padding: 2rem;
    box-shadow: -30px 30px 60px -22px rgba(123, 123, 123, 0.1) !important;
}

.belge-category .category-title {
    font-weight: 700;
    font-size: 1.3rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--nay);
}

.belge-category .list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.belge-category .list a {
    color: var(--nav-color) !important;
    display: flex;
    justify-content: space-between;
    transition: 0.2s all ease;
}

.belge-category .list a:hover {
    color: var(--nay) !important;
}

.belge-category .list a img {
    aspect-ratio: 1/1;
    height: 11px;
    width: 16px;

}

body {
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    background-color: var(--bg-color);
}

nav.landing {
    position: absolute;
    top: 0px;
    background-color: rgba(0, 0, 0, 0) !important;
}

nav {
    z-index: 999;
    background-color: var(--nav-color);
    width: 100%;
    height: 94px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    height: 70px;
}

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

nav .logo {
    padding: 3px;
}

nav .logo img {
    height: 35px;

}

nav .links {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav .links a {
    color: #E7E9ED;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 26px;
    letter-spacing: -0.1px;
    text-align: center;
    transition: 0.25s all ease;
}

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

nav .login-button {
    display: flex;
    justify-content: flex-end;

}

nav .login-button a {
    width: 200px;
    background-color: var(--nay);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    padding: 12px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

nav .login-button a:hover {
    background-color: var(--nay-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.hero {
    width: 100%;
    position: relative;
}

.hero .bg {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 1;
    object-fit: cover;
    object-position: bottom;
}

.hero .overlay {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(22, 28, 45, 0.75);
    z-index: 2;
}

.hero .down {
    position: absolute;
    bottom: 50px;
    z-index: 30;
    height: 50px;
    width: 50px;
    left: 50%;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-12px) translateX(-50%);
    }

    60% {
        transform: translateY(-6px) translateX(-50%);
    }
}

.hero .content {
    margin-inline: auto;
    height: 100vh;
    position: relative;
    width: 770px;
    max-width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    color: #fff;
    text-align: center;
}

.hero .content .slogan {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 100%;
    letter-spacing: 1.63px;
    text-align: center;
    text-transform: uppercase;

}

.hero .content .title {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 3rem;
    line-height: 65px;
    letter-spacing: -2px;
    text-align: center;

}

.search-container {
    margin-top: 2rem;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 1);
    border-radius: var(--radius-md);
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    z-index: 10000;
    transform: scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(255, 66, 66, 0.15);
}

.search-container input[type="submit"],
.search-container .search-submit {
    background-color: var(--nay);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-size: 1rem;
    outline: none;
    border: none;
    height: 54px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-align: center;
    margin-right: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.search-container input[type="submit"]:hover,
.search-container .search-submit:hover {
    background-color: var(--nay-hover);
}

.search-container input[type="text"] {
    background-color: transparent;
    outline: none;
    border: none;
    padding-left: 1rem;
    color: rgba(125, 129, 141, 1);
    height: 100%;
    flex-grow: 1;
    color: #000;
    font-weight: 500;
    font-size: 1.2rem;
}

.features-container {
    padding-inline: 2rem;
    margin-top: 7rem;
    margin-bottom: 7rem;
    width: 1200px;
    max-width: calc(100% - 4rem);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

.features-container {
    padding-inline: 2rem;
    margin-top: 7rem;
    margin-bottom: 7rem;
    width: 1200px;
    max-width: calc(100% - 4rem);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 1.2fr;
    grid-template-rows: auto;
    gap: 1.5rem;
}

.features-container .feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.features-container .feature img {
    height: 50px;
    width: 50px;
}

.features-container .feature .details .title {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 32px;
    letter-spacing: -0.5px;

}

.features-container .feature .details .desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 29px;
    letter-spacing: -0.2px;

}

.center {
    align-items: center;
    justify-content: center;
    display: flex;
}

section {
    min-height: 100vh;
}

.showcase {
    padding-inline: 2rem;
    width: 1200px;
    max-width: calc(100% - 4rem);
    margin-inline: auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    align-items: center;
    margin-bottom: 5rem;

}

.showcase .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase .info .title {
    font-weight: 700;
    font-size: 3rem;
    line-height: 3rem;
    letter-spacing: -1.2px;

}

.showcase .info .desc {
    margin-top: 1rem;
    font-weight: 400;
    font-size: 1rem;
    line-height: 32px;
    letter-spacing: -0.2px;
}

.showcase .info .cta {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 2rem;
    letter-spacing: -1.2px;
    color: var(--nay);
    display: flex;
    gap: 1rem;
    align-items: center;
    text-decoration: none;
}

.showcase .image {
    width: 520px;
    max-width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease;
}

.showcase .image:hover {
    transform: scale(1.02) rotate(1deg);
}

.showcase2 {
    padding-inline: 2rem;
    width: 1200px;
    max-width: calc(100% - 4rem);
    margin-inline: auto;
    display: flex;
    justify-content: space-around;
    gap: 5rem;
}

.showcase2 .c {
    width: calc(50% - 5rem);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase2 .c .title {
    font-weight: 700;
    font-size: 3rem;
    line-height: 58px;
    letter-spacing: -1.8px;

}

.showcase2 .c .desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 32px;
    letter-spacing: -0.2px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.showcase2 .c .image {
    max-width: 100%;
}

footer {
    margin-top: 3rem;
    padding: 1rem;
    padding-top: 5rem;
    width: 100%;
    background-color: var(--nav-color);
    color: #fff;
}

footer .faq-wrapper {
    width: 1200px;
    max-width: calc(100% - 4rem);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-around;
    gap: 2rem;

}

footer .faq-wrapper .info .title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 3.5rem;
    letter-spacing: -1.8px;

}

footer .faq-wrapper .info .desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 32px;
    letter-spacing: -0.2px;
    color: var(--text-color);
    margin-bottom: 2rem;

}

footer .faq-wrapper .info .feature-item {
    display: flex;
    gap: 1rem;
}

footer .faq-wrapper .info .feature-item .image {
    height: 30px;
    width: 30px;
}

footer .faq-wrapper .info .feature-item .details .title {
    font-size: 1.3rem;
    line-height: normal !important;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

footer .faq-container {
    background-color: #fff;
    height: 100%;
    height: -webkit-fill-available;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    border-radius: 10px;
    color: var(--nav-color);
}

footer .faq-container .line {
    background-color: var(--nay);
    height: 6px;
    width: 220%;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    flex-grow: 1;
    margin-block: auto;
    padding-bottom: 2rem;
}

.faq-question {
    padding: 2rem;
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 32px;
    letter-spacing: -0.5px;

}

/*

.faq-question::after {
    content: "›";
    position: absolute;
    right: 16px;
    font-size: 22px;
    transition: transform 0.4s ease;
}*/

.faq-item.active .faq-question::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    color: #555;
    padding: 0rem 2rem;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* yeterli bir yükseklik */
}

footer .links {
    max-width: 100%;
    margin-top: 3rem;
    margin-inline: auto;
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

footer .links .link-wrapper {
    display: flex;
    flex-direction: column;
}

footer .links .link-wrapper .title {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 26px;
    letter-spacing: -0.1px;
    color: var(--text-color);
}

footer .links .link-wrapper .items {
    display: flex;
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}

footer .links .link-wrapper .items a {
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    letter-spacing: -0.2px;
    transition: 0.2s all ease;
}

footer .links .link-wrapper .items a:hover {
    color: var(--nay);
}

.footer-copy {
    width: 100%;
    color: var(--text-color);
    background-color: var(--nav-color);
    padding: 1rem 3rem;
    text-wrap: wrap;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-copy a {
    text-decoration: none;
    color: var(--nay);
}

.footer-copy .socials {
    display: flex;
    gap: 1rem;
}

.footer-copy .socials .icon {
    width: 30px;
    height: 30px;
}

.container {
    margin-inline: auto;
    max-width: 100%;
    padding-inline: 1rem;
}

.container-700 {
    width: 700px !important;
}

.container-1000 {
    width: 1000px !important;
}

.container-1400 {
    width: 1400px !important;
}

.updates-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.updates-container .update {
    cursor: pointer;
    background-color: #fff;
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    border: 1px solid rgba(0, 0, 0, 0.15);
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem;
}

.updates-container .update .title {
    font-weight: 500;
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: -0.1px;

}

.updates-container .update .date {
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.1px;
    text-align: center;
    white-space: nowrap;

}

.mt-header {
    margin-top: 94px;
}

.tx-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.page-title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 65px;
    letter-spacing: -2px;

}

.page-desc {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 1rem;
    line-height: 32px;
    letter-spacing: -0.2px;

}

.card {
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.prices-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.new-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.new-features-container .new-feature {
    display: flex;
    gap: 1rem;
}

.new-feature img {
    height: 50px;
    width: 50px;

}

.new-feature .title {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 32px;
    letter-spacing: -0.5px;

}

.new-feature .desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 29px;
    letter-spacing: -0.2px;

}

.prices-container .price-card {
    padding: 2rem;
}

.price-card.featured {
    transform: scale(1.07);
    border: 2px solid var(--nay);
    z-index: 10;
}

.price-card .desc {
    color: var(--nay);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 100%;
    letter-spacing: 1.63px;
    text-transform: uppercase;
}

.price-card .price {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 3rem;
    line-height: 65px;
    letter-spacing: -2px;
}

.price-card .price span {
    font-size: 1.6rem;
    margin-right: 6px;
}

.price-card .packet-features {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.price-card .packet-features .feature {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.price-card .packet-features .feature img {
    width: 17px;
    height: 11px;
}

.price-card .packet-features .feature img.x {
    width: 12px;
    height: 12px;
}

.price-card .buy-button.selected {
    background-color: var(--nay) !important;
    color: #fff;
}

.price-card .buy-button {
    cursor: pointer;
    background-color: var(--nay-soft);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 32px;
    letter-spacing: -0.6px;
    border-radius: var(--radius-sm);
    margin-top: 3rem;
    color: var(--nay);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* Scroll Reveal Animation Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Base Modernizer */
.modern-vibe {
    background-color: var(--bg-color);
}

/* Empty ruleset fix & Cleanup */
/* Dark Mode Base Support */
[data-theme="dark"] {
    --bg-color: #0f172a;
    --text-color: #f1f5f9;
    --nav-color: #020617;
    --nav-color-light: #1e293b;
    --glass-bg: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .card,
[data-theme="dark"] .feature,
[data-theme="dark"] .search-container,
[data-theme="dark"] .price-card,
[data-theme="dark"] form {
    background: #1e293b;
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .price-card .packet-features .feature {
    color: #cbd5e1;
}

.packet .buttons {
    display: flex;
    gap: 1rem;
}

.btn-success {
    background-color: #2cab0c;
    color: #fff;
}

.packet .name {
    font-size: 1.4rem;
    font-weight: bold;
}

.packet .stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.packet .stats .stat {
    background-color: #eeede9;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 1rem;
    border-radius: 12px;
}

.profile-form {
    background-color: var(--nav-color);
    color: #fff;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-form .form-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-form .form-item label {
    font-size: 1.4rem;
    font-weight: bold;
}

.profile-form .form-item input {

    height: 50px;
    border: none;
    outline: none;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 300 !important;
}

.btn-remove {
    background-color: var(--nay);
    color: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.btn {
    gap: 5px;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-go {
    background-color: #1b7aff;
    color: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite {
    align-items: center;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.favorite p {
    font-size: 1.5rem;
    font-weight: 500;
}

.favorite .action-buttons {
    display: flex;
    gap: 0.5rem;
}

.price-card .buy-button:hover {
    background-color: var(--nay);
    color: var(--text-color);

}

.quick-access {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    margin-bottom: 3rem;
}

.quick-access .item {
    aspect-ratio: 1/1;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;

}

.close-btn {
    display: none;
}

/* Overlay */
nav .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
}

nav .overlay.active {
    opacity: 1;
    visibility: visible;
}


.contact {
    margin-top: 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;

}

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

/* Sol form */
.contact-form {
    aspect-ratio: 1/1;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form iframe {
    height: 100%;
    width: 100%;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 0.9rem;
}

.contact-form textarea {
    resize: none;
    height: 80px;
}

.contact-form button {
    background: var(--nay);
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.contact-form button:hover {
    background: var(--nay);
}

/* Sağ bilgi */
.contact-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-info p,
.contact-info a {
    font-size: 0.9rem;
    color: var(--nav-color);
    line-height: 1.5;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--nay);
}


@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .m-show {

        display: block !important;
    }

    nav .links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: var(--nav-color);
        color: #fff !important;
        flex-direction: column;
        align-items: start;
        padding: 80px 30px;
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 1001;
    }

    nav .links.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    nav .hamburger {
        display: block;
        z-index: 1000;
        position: absolute;
        right: 10px;
        color: #fff;
    }

    nav .close-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
    }


    .quick-access {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .prices-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .new-features-container {
        grid-template-columns: repeat(1, 1fr);
        align-items: center;

    }

    .quick-access .item {
        aspect-ratio: auto;
    }

    .m-destroy {
        display: none !important;
    }

    .showcase2 .c {
        width: auto !important;
        max-width: 100%;
    }

    .showcase2 .c .image {
        max-height: 40vh;
        object-fit: contain;
    }

    .footer-copy {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .links {
        grid-template-columns: repeat(3, 1fr);
        font-size: 0.5rem !important;
    }

    footer .links .link-wrapper .items a {
        font-size: 0.7rem !important;
    }

    .showcase {
        flex-direction: column !important;
    }

    .faq-wrapper {
        flex-direction: column;
    }

    .faq-question {
        font-size: 1rem;
    }

    .search-container input[type="text"] {
        font-size: 1rem !important;
    }

    footer .faq-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Global Scroll Reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Search History Dropdown */
.search-history-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
}

.search-history-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-history-dropdown .history-title {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--nav-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.history-item:hover {
    background: rgba(0, 0, 0, 0.03);
    padding-left: 1.25rem;
}

.history-item i {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.clear-history-btn {
    font-size: 0.75rem;
    color: var(--nay);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.clear-history-btn:hover {
    background: var(--nay-soft);
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, var(--nav-color) 0%, #0d1627 100%);
    color: #e2e8f0;
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-top: 4rem;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modern-footer .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.modern-footer .info .title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.modern-footer .info .desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modern-footer .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.modern-footer .feature-icon {
    font-size: 1.75rem;
    color: var(--nay);
    background: rgba(255, 66, 66, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.modern-footer .feature-item .details .title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.modern-footer .feature-item .details .desc {
    font-size: 0.9rem;
    color: #94a3b8;
}

.modern-footer .faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modern-footer .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-footer .faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.modern-footer .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.modern-footer .faq-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--nay);
}

.modern-footer .faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.modern-footer .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.modern-footer .faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.modern-footer .links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.modern-footer .link-wrapper .title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.modern-footer .link-wrapper .items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modern-footer .link-wrapper .items .item {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-footer .link-wrapper .items .item:hover {
    color: var(--nay);
    transform: translateX(5px);
}

.modern-footer-copy {
    background: #090f1b;
    /* slightly darker base */
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modern-footer-copy .footer-copy-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.modern-footer-copy .copy {
    font-size: 0.85rem;
    color: #64748b;
}

.modern-footer-copy .copy a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
}

.modern-footer-copy .copy a:hover {
    color: var(--nay);
}

.modern-footer-copy .socials {
    display: flex;
    gap: 1rem;
}

.modern-footer-copy .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.modern-footer-copy .socials a:hover {
    background: var(--nay);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 1000px) {
    .modern-footer .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .modern-footer .links {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer-copy .footer-copy-inner {
        flex-direction: column;
        text-align: center;
    }
}