@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ===================== */
/* GLOBAL & RESET        */
/* ===================== */
* {
    user-select: none;
    box-sizing: border-box;
}

body {
    background-color: rgb(213, 231, 225);
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    padding-top: 76px;
    font-family: "Inter", sans-serif;
    animation: bodyFadeIn 0.6s ease;
}

@keyframes bodyFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

:root {
    --yazirengi: #555553;
    --yaziolcusu: 20px;
    --iconrengi: #333333;
    --fonrengi: rgb(152, 204, 187);
    --font: "Inter", sans-serif;
    --primary: rgb(20, 78, 46);
    --primary-light: rgb(13, 189, 130);
    --primary-dark: rgb(25, 97, 57);
    --accent: #fff4b8;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.16);
}

/* ===================== */
/* DESKTOP NAVBAR        */
/* ===================== */
.nav-bar {
    width: 100%;
    height: 70px;
    background-color: var(--fonrengi);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--iconrengi);
    box-shadow: var(--shadow-sm);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.logo-zone {
    width: 100px;
    height: 90%;
    margin-left: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.logo-zone:hover {
    transform: scale(1.02);
}

.logo-zone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.others-zone {
    width: 60%;
    height: 80%;
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.nav-elements {
    cursor: pointer;
    color: black;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 12px;
}

.nav-elements p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font);
}

.nav-elements:hover {
    color: var(--primary-dark);
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

#loginUser {
    background-color: var(--primary);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    padding: 8px 20px;
}

#loginUser:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

#loginUser svg {
    color: white;
}

#ai {
    background-color: var(--primary-light);
    border-radius: 30px;
    color: white;
    box-shadow: 0 2px 8px rgba(13, 189, 130, 0.4);
}

#ai p {
    color: white;
}

#ai:hover {
    background-color: var(--primary);
    transform: scale(1.02);
}

/* ===================== */
/* MOBİL TOP LOGO BAR   */
/* ===================== */
.mobile-top-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: var(--fonrengi);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: var(--shadow-sm);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: slideDown 0.5s ease;
}

.mobile-top-bar .mobile-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.mobile-top-bar .mobile-logo:hover {
    transform: scale(1.05);
}

/* ===================== */
/* MOBİL NAVBAR (aşağı) */
/* ===================== */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background-color: var(--fonrengi);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding: 0 4px;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(0, 0, 0, 0.55);
    text-decoration: none;
    font-family: var(--font);
    font-size: 10px;
    font-weight: 500;
    transition: var(--transition);
    padding: 6px 4px 4px;
    border-radius: 12px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.mobile-nav-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: currentColor;
    transition: var(--transition);
}

.mobile-nav-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 10px;
    line-height: 1;
}

.mobile-nav-item.active {
    color: var(--primary);
}

.mobile-nav-item.active svg {
    filter: drop-shadow(0 0 3px rgba(20, 78, 46, 0.35));
}

.mobile-nav-item:active {
    transform: scale(0.93);
}

.mobile-nav-item:hover {
    color: var(--primary-dark);
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ===================== */
/* SLIDER / VIDEO ZONE   */
/* ===================== */
.big-zone {
    width: 100%;
    height: 100vh;
    position: relative;
}

.video-zone {
    width: 100%;
    height: 80vh;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video {
    width: 95%;
    height: 90%;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #b9d2c8;
    animation: scaleIn 0.7s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.38) 34%,
            rgba(0, 0, 0, 0.12) 65%,
            rgba(0, 0, 0, 0.04) 100%);
}

.slide-content {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 520px;
    z-index: 2;
    color: white;
    font-family: var(--font);
}

.slide-content h1 {
    margin: 0 0 18px 0;
    font-size: 52px;
    line-height: 1.05;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.slide-content p {
    margin: 0 0 28px 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    animation: fadeInUp 0.6s ease 0.3s both;
}

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

.slide-btn {
    border: none;
    outline: none;
    padding: 14px 26px;
    border-radius: 999px;
    background-color: var(--primary-dark);
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 22px rgba(25, 97, 57, 0.28);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.slide-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: var(--primary);
    box-shadow: 0 14px 28px rgba(25, 97, 57, 0.4);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    width: 30px;
    border-radius: 20px;
    background-color: white;
}

/* ===================== */
/* BIG ZONE 2 (CARDS)    */
/* ===================== */
.big-zone-2 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.big-zone-2.show {
    opacity: 1;
    transform: translateY(0);
}

.zones {
    width: 92%;
    max-width: 1400px;
    height: 540px;
    display: flex;
    gap: 20px;
}

.cards {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: flex 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                filter 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.cards:hover {
    flex: 1.45;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.zones:hover .cards:not(:hover) {
    filter: brightness(0.82);
}

#Product {
    background-image: url(../assent/img/mehsullar.png);
}

#YouDesigned {
    background-image: url(../assent/img/dizayn.png);
}

#YouSale {
    background-image: url(../assent/img/para.png);
}

#Partnership {
    background-image: url(../assent/img/partnership.png);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.45) 38%,
            rgba(0, 0, 0, 0.16) 70%,
            rgba(0, 0, 0, 0.08) 100%);
    transition: background 0.4s ease;
}
.card-overlay img{
    width: 100%;
    height: 100%;
}

.cards:hover .card-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.55) 42%,
            rgba(0, 0, 0, 0.18) 72%,
            rgba(0, 0, 0, 0.08) 100%);
}

.card-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: white;
    font-family: var(--font);
}

.card-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 24px;
    padding: 0 8px;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.card-content h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.card-hidden {
    margin-top: 14px;
    opacity: 0;
    transform: translateY(18px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cards:hover .card-hidden {
    opacity: 1;
    transform: translateY(0);
    max-height: 120px;
}

.card-hidden p {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.card-hidden a, .card-hidden span {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition);
}

.card-hidden a:hover, .card-hidden span:hover {
    color: white;
    padding-left: 4px;
}

/* ===================== */
/* BIG ZONE 3 (ABOUT)    */
/* ===================== */
.big-zone-3 {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.about-prosses {
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-cart {
    border: 1px solid #9ce9fc;
    border-radius: 20px;
    background-color: #87d3cd;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-cart.show {
    opacity: 1;
    transform: translateY(0);
}

.about-cart:nth-child(1) { transition-delay: 0.1s; }
.about-cart:nth-child(2) { transition-delay: 0.2s; }
.about-cart:nth-child(3) { transition-delay: 0.3s; }
.about-cart:nth-child(4) { transition-delay: 0.4s; }
.about-cart:nth-child(5) { transition-delay: 0.5s; }

.about-cart:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-ico-zone {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.ico-zone {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.about-cart:hover .ico-zone {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.about-ico-zone p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.about-text-zone p {
    font-size: 14px;
    line-height: 1.7;
    color: #333131;
    font-family: var(--font);
    margin: 0;
}

/* ===================== */
/* FOOTER                */
/* ===================== */
.footer-zone {
    background-color: rgb(73, 116, 92);
    color: white;
    padding: 60px 0 20px 0;
    font-family: var(--font);
    margin-top: 50px;
}

.footer-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--fonrengi);
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

/* ==================== TƏKMİLLƏŞMİŞ SOSİAL MEDİA İKONLARI ==================== */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.social-links a:hover {
    background: var(--primary-light, rgb(13, 189, 130));
    transform: translateY(-5px) scale(1.05);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(13, 189, 130, 0.4);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-links a:hover svg {
    transform: scale(1.1);
}

.social-links a svg path,
.social-links a svg circle,
.social-links a svg line {
    fill: white;
    stroke: white;
}

.social-links a i {
    font-size: 22px;
    line-height: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================== */
/* PRODUCT SƏHİFƏSİ      */
/* ===================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.3;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.order-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: auto;
}

.order-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(25, 97, 57, 0.3);
}

.search-container {
    padding: 30px 20px 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(20, 78, 46, 0.2);
    border-radius: 16px;
    font-size: 16px;
    font-family: var(--font);
    transition: var(--transition);
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(20, 78, 46, 0.15);
}

.categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    scrollbar-width: thin;
}

.categories::-webkit-scrollbar {
    height: 4px;
}

.categories::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.category-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid rgba(20, 78, 46, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===================== */
/* DESIGN SƏHİFƏSİ       */
/* ===================== */
.design-container {
    display: flex;
    gap: 24px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.stickers-panel {
    width: 240px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    max-height: 600px;
    overflow-y: auto;
    animation: fadeInLeft 0.5s ease;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.sticker-item {
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sticker-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
    background: var(--accent);
}

.canvas-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.design-canvas {
    max-width: 100%;
    max-height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.tools-panel {
    width: 240px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    animation: fadeInRight 0.5s ease;
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.tool-btn {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: #f5f5f5;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tool-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

/* ===================== */
/* PARTNERSHIP SƏHİFƏSİ  */
/* ===================== */
.partnership-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 60px 20px;
}

.partnership-form {
    background: white;
    border-radius: 28px;
    padding: 40px;
    width: 100%;
    max-width: 550px;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.6s ease;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
    text-align: center;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 32px 0;
    text-align: center;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(20, 78, 46, 0.15);
    border-radius: 14px;
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 4px 12px rgba(20, 78, 46, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 12px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(25, 97, 57, 0.3);
}

/* ========================= */
/* RESPONSİV - TABLET (768px) */
/* ========================= */
@media (max-width: 768px) {
    .nav-bar {
        display: none;
    }

    .mobile-top-bar {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    body {
        padding-top: 56px;
        padding-bottom: 68px;
    }

    .slide-content {
        left: 24px;
        max-width: 85%;
    }

    .slide-content h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .big-zone {
        height: auto;
        min-height: 55vh;
    }

    .video-zone {
        height: 50vh;
        margin-top: 10px;
    }

    .video {
        border-radius: 16px;
    }

    .big-zone-2 {
        min-height: auto;
        padding: 30px 0;
    }

    .zones {
        width: 92%;
        height: auto !important;
        flex-direction: column;
        gap: 16px;
    }

    .cards {
        height: 200px;
        min-height: 200px;
        flex: none;
        width: 100%;
        border-radius: 20px;
    }

    .cards:hover {
        flex: none;
        transform: scale(1.02);
    }

    .card-hidden {
        opacity: 1;
        transform: translateY(0);
        max-height: 120px;
    }

    .big-zone-3 {
        height: auto;
        padding: 40px 0;
    }

    .about-prosses {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 90%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .stickers-panel,
    .tools-panel {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    .social-links a svg {
        width: 18px;
        height: 18px;
    }
    .social-links a i {
        font-size: 20px;
    }
    .social-links {
        justify-content: center;
    }
}

/* ========================= */
/* RESPONSİV - MOBİL (480px) */
/* ========================= */
@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content p {
        display: none;
    }

    .slide-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .video-zone {
        height: 42vh;
    }

    .big-zone {
        min-height: 46vh;
    }

    .cards {
        height: 170px;
        min-height: 170px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-no {
        font-size: 10px;
        min-width: 30px;
        height: 20px;
    }

    .card-hidden p {
        font-size: 12px;
    }

    .card-hidden span {
        font-size: 12px;
    }

    .about-prosses {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-cart {
        padding: 16px;
    }

    .about-ico-zone p {
        font-size: 14px;
    }

    .ico-zone {
        width: 35px;
        height: 35px;
    }

    .about-text-zone p {
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px 12px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 16px;
    }

    .order-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .partnership-form {
        padding: 24px 20px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-zone {
        padding: 40px 0 16px 0;
    }

    .mobile-nav {
        height: 62px;
    }

    body {
        padding-top: 56px;
        padding-bottom: 62px;
    }

    .mobile-nav-item svg {
        width: 20px;
        height: 20px;
    }

    .mobile-nav-item span {
        font-size: 9px;
    }
}

/* ========================= */
/* TABLET LANDSCAPE (1024px) */
/* ========================= */
@media (max-width: 1024px) and (min-width: 769px) {
    .slide-content h1 {
        font-size: 38px;
    }

    .slide-content p {
        font-size: 15px;
    }

    .others-zone {
        width: 70%;
        gap: 20px;
    }

    .nav-elements p {
        font-size: 16px;
    }

    .zones {
        height: 420px;
    }

    .cards {
        min-width: 0;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-hidden p {
        font-size: 12px;
    }

    .about-prosses {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .about-text-zone p {
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ========================= */
/* ANİMASYALAR (yeni)       */
/* ========================= */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}