.hero-section {
    background-color: #ff6b6b;
    min-height: 100vh;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -9.375rem;
    left: -3.125rem;
    width: 23.4375rem;
    height: 23.4375rem;
    background-color: white;
    border-radius: 0 0 18.75rem 0 / 0 0 18.75rem 0;
    transform: rotate(10deg);
    transform-origin: bottom right;
    z-index: 1;
}

.hero-section .main-navbar {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    padding: 1.5rem;
    max-width: none;
    width: auto;
}

.hero-section .main-navbar img {
    width: 9.375rem;
    height: auto;
}

.home-navbar {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-navbar li {
    margin: 0;
    padding: 0;
}

.home-navbar .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.2;
    border-radius: 1.5rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    background-color: transparent;
    white-space: nowrap;
}

.home-navbar .nav-link .iconify {
    font-size: clamp(1.15rem, 1.05rem + 0.3vw, 1.5rem);
    flex-shrink: 0;
}

.home-navbar .nav-link:hover {
    background-color: #ffffff;
    color: #ff6b6b;
}

.hero-shape-bottom-left {
    position: absolute;
    left: 4rem;
    bottom: -30rem;
    width: 35rem;
    height: 35rem;
    border-radius: 15.1875rem;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
    transform: rotate(56.50deg);
}

.hero-shape-right-back {
    position: absolute;
    width: 41.77625rem;
    height: 39.6875rem;
    right: 0;
    bottom: -15.25rem;
    border-radius: 15.1875rem;
    background-color: rgba(255, 100, 98, 0.3);
    box-shadow: 0 0 1.85625rem 0.125rem rgba(0, 0, 0, 0.25);
    transform: rotate(25.23deg);
    z-index: 1;
}

.hero-shape-right-front {
    position: absolute;
    width: 39.6875rem;
    height: 39.6875rem;
    right: 5rem;
    bottom: -15rem;
    border-radius: 15.1875rem;
    background-color: rgba(255, 255, 255, 0.5);
    transform: rotate(15deg);
    z-index: 2;
}

.hero-content {
    position: absolute;
    left: 3rem;
    top: 55%;
    transform: translateY(-50%);
    z-index: 4;
    max-width: 50%;
    padding: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    font-weight: 600;
    line-height: clamp(2.25rem, 1.75rem + 2.5vw, 3.75rem);
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

.hero-title strong {
    font-weight: 700;
    white-space: nowrap;
}

.hero-description {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 2rem 0;
}

.hero-description strong {
    font-weight: 700;
}

.hero-store-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-store-badges a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-store-badges a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.hero-store-badges img {
    height: 3.5rem;
    width: auto;
}

.hero-human-image {
    position: absolute;
    right: 8rem;
    bottom: 0;
    height: 78vh;
    width: auto;
    max-height: 85vh;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
}

.mobile-header {
    display: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -20rem;
    width: 20rem;
    height: 100%;
    background-color: #ff6b6b;
    z-index: 999;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    border: none;
    color: #ff6b6b;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 4rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: opacity 0.2s ease;
}

.mobile-menu-link .iconify {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.mobile-menu-link:hover {
    opacity: 0.8;
}

.mobile-menu-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-social-icon:hover {
    background-color: #ffffff;
    color: #ff6b6b;
}

@media (max-width: 1200px) {
    .home-navbar .nav-link {
        padding: 0.55rem 0.85rem;
    }
}

@media (max-width: 1300px) and (min-width: 992px) {
    .hero-content {
        max-width: 44%;
        left: 3rem;
    }

    .hero-human-image {
        right: 5rem;
        height: 72vh;
    }

    .hero-shape-right-back {
        width: 38rem;
        height: 36rem;
        right: -2rem;
        bottom: -14rem;
    }

    .hero-shape-right-front {
        width: 36rem;
        height: 36rem;
        right: 2rem;
        bottom: -14rem;
    }

    .hero-shape-bottom-left {
        width: 30rem;
        height: 30rem;
        left: 3rem;
        bottom: -27rem;
    }

    .hero-title {
        font-size: clamp(2.25rem, 1.75rem + 2vw, 3.25rem);
        line-height: clamp(2.25rem, 1.75rem + 2vw, 3.1rem);
    }

    .hero-description {
        font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
    }

    .hero-store-badges img {
        height: 3.25rem;
    }
}


@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        border-bottom-left-radius: 2.5rem;
        border-bottom-right-radius: 2.5rem;
    }

    .hero-section::before {
        display: none;
    }

    .hero-shape-bottom-left,
    .hero-shape-right-back,
    .hero-shape-right-front {
        display: none;
    }

    .hero-human-image {
        display: none;
    }

    .hero-section .main-navbar {
        display: none;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 4;
        padding: 1.5rem;
    }

    .mobile-logo {
        height: 2rem;
        width: auto;
    }

    .hamburger-btn {
        background: #ffffff;
        border: none;
        color: #ff6b6b;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

    .hamburger-btn:hover {
        transform: scale(1.05);
    }

    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        padding: 0 1.5rem 2.5rem 1.5rem;
    }

    .hero-title {
        font-size: clamp(3.75rem, 1.5rem + 1.5vw, 2.5rem);
        line-height: clamp(4rem, 1.5rem + 1.5vw, 2.5rem);
        margin-top: 1rem;
    }

    .hero-title strong {
        white-space: normal;
    }

    .hero-description {
        font-size: clamp(1.5rem, 0.8rem + 0.4vw, 1.1rem);
    }



    .hero-store-badges img {
        height: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        border-bottom-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }

    .mobile-header {
         padding: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem 2rem 1rem;
    }

    .hero-title {
        font-size: clamp(2.75rem, 1.5rem + 1.5vw, 2.5rem);
        line-height: clamp(3rem, 1.5rem + 1.5vw, 2.5rem);
        margin-top: 1rem;
    }

    .hero-description {
        font-size: clamp(1.25rem, 0.8rem + 0.4vw, 1.1rem);
    }


    .hero-store-badges img {
        height: 2.75rem;
    }

    .about-header-right p{
        text-align: left !important;
    }
}


.about-section, .features-section {
    padding: 6rem 0;
}

.about-header-left h2{
   font-size: clamp(1.5rem, 0.75rem + 2.25vw, 3rem);
   color: var(--black);
   font-weight: 700;
}

.about-header-left h2 span{
    color: var(--red);
}

.about-header-right p{
    color: var(--gray);
    font-weight: 400;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    text-align: right;
}

.about-card{
    background-color: var(--softwhite);
    border-radius: 40px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.about-card .about-img{
    width: 80px;
    height: 80px;
}

.about-card .about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card .about-body h2{
    color: var(--black);
    font-weight: 700;
    font-size: clamp(1.5rem, 1.5vw, 1.5rem);
}

.about-card .about-body p{
    margin-bottom: 0;
    color: var(--gray);
    font-weight: 500;
    font-size: clamp(0.9rem, 1vw, 1.25rem);
}



.story-section .right-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 4rem;
    height: 100%;
    justify-content: space-between;
}

.story-section .right-content h2{
    color: var(--black);
    font-weight: 600;
    font-size: clamp(1.5rem, 0.75rem + 2vw, 3rem);
    margin-bottom: 0;
}

.story-section .right-content h2 strong{
    color: var(--red);
}

.story-section .right-content p{
    color: var(--gray);
    font-weight: 400;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 2rem;
}

.features-container{
    background-color: var(--softwhite);
    border-radius: 40px;
    padding: 1.5rem;
    gap: 1.5rem;
    position: relative;
}

.features-left{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-left h2{
    color: var(--black);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 3rem);
}

.features-left h2 strong{
    color: var(--red);
}

.features-left p{
     font-size: clamp(1rem, 1.5vw, 1.5rem);
     color: var(--gray);
     font-weight: 400;
}

.mockup{
    position: absolute;
    right: 50%;
    transform: translate(150%, 0%);
    top: 20px;
    overflow: hidden;
}

.mockup img{
    height: 350px;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.features-card{
    background-color: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    gap: 1.5rem;
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
}


.features-card-left img{
    height: 3rem;
    width: 3rem;
    object-fit: cover;
}

.features-card-right{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.features-card-right h2{
    color: var(--black);
    font-weight: 700;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    margin-bottom: 0;
}

.features-card-right p {
    margin-bottom: 0;
    color: var(--gray);
    font-weight: 400;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
}

/* Resimli Kart Kapsayıcısı */
.features-image-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1.5rem; 
    min-height: 350px; 
    height: 100%;
    display: flex;
    align-items: flex-end; 
    padding: 1rem;
    position: relative;

    
}



.faq-section{
    padding-bottom: 6rem;
}

.faq-left{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-left h2{
    color: var(--black);
    font-weight: 600;
    font-size: clamp(1.5rem, 0.75rem + 3vw, 3rem);
}

.faq-left p{
    color: var(--gray);
    font-weight: 400;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
}

.faq-img{
    height: 400px;
    width: 100%;
    border-radius: 1rem;
}

.faq-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
    height: 100%;
    justify-content: center;
}

.faq-item {
    padding-bottom: 1rem; 
}



.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: none;
    border: none;
    padding: 0; 
    cursor: pointer;
    text-align: left;
    outline: none;
    gap: 1rem;
    color: var(--black);
    font-weight: 500;
    font-size: clamp(1.1rem, 1.5vw, 1.5rem); 
}

.faq-icon {
    color: var(--red);
    font-size: clamp(1.2rem, 1.5vw, 1.5rem); 
    line-height: 1.2;
    width: 20px;
    flex-shrink: 0;
    display: inline-block;
    text-align: center;
    font-weight: 400;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin: 0;
    padding-top: 1rem; 
    padding-bottom: 1rem; 
    padding-left: 2.25rem;
    line-height: 1.6;
    color: var(--gray);
    font-weight: 400;
    font-size: clamp(0.875rem, 1vw, 1rem); 
}

@media(min-width: 991px) and (max-width:1199px){
    .mockup{
        transform: translate(115%, 0%) !important;
    }

    .right-content{
        padding-left: 2rem !important;
    }

    .left-image, .left-image img{
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
}

@media(max-width:991px){
    .mockup{
        display: none !important;
    }

    .left-image img{
        max-height: 500px;
        object-fit: contain;
    }

    .right-content{
        padding-left: 0 !important;
    }

    .form-col {
        padding: 5%;
    }
    
    .contact-image {
        max-height: 500px;
    }
}


.contact-section {
    background-color: var(--softwhite);
    overflow: hidden;
    position: relative;
}

.contact-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw; 
    height: 100%;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-col {
    display: flex;
    align-items: center;
    min-height: 700px;
}

.form-wrapper {
    width: 100%;
    max-width: 600px; 
}

.contact-title {
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-red {
    color: var(--red);
}

.contact-desc {
    color: var(--gray);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.custom-contact-form label {
    color: var(--black);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.custom-contact-form .form-control {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    padding: 1rem;
    color: var(--black);
    font-size: clamp(0.8rem, 1vw, 0.875rem);
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-contact-form .form-control::placeholder {
    color: #BDBDBD;
}

.custom-contact-form .form-control:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--softred);
}

/* Buton Tasarımı */
.custom-contact-form .submit-btn {
    background-color: var(--red);
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 56px; 
}

.custom-contact-form .submit-btn:hover {
    background-color: #e55a58;
}

.image-col {
    position: relative;
    padding: 0;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px; 
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-toast {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    animation: slideInRight 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-toast.toast-success { border-left: 4px solid #28a745; }
.custom-toast.toast-error { border-left: 4px solid var(--red); }

.custom-toast p {
    margin: 0;
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 500;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    animation: shrinkProgress 3s linear forwards;
}

.toast-success .toast-progress { background-color: #28a745; }
.toast-error .toast-progress { background-color: var(--red); }

/* Animasyonlar */
@keyframes slideInRight {
    to { transform: translateX(0); }
}

@keyframes slideOutRight {
    to { transform: translateX(120%); }
}

@keyframes shrinkProgress {
    from { width: 100%; }
    to { width: 0%; }
}

.custom-feedback {
    display: none;
    color: var(--red);
    font-size: 0.8rem;
    margin-top: 4px;
    position: absolute; 
    bottom: -20px;
}
.is-invalid ~ .custom-feedback {
    display: block;
}

.custom-contact-form .submit-btn:disabled,
.custom-contact-form .submit-btn.disabled-state {
    background-color: #fca5a4; 
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.8;
}

.custom-footer {
    background-color: var(--red);
    padding: 4rem 0 2rem 0; 
    color: #FFFFFF;
    font-family: inherit; 
}

.footer-main-logo {
    max-width: 180px;
    height: auto;
}

.app-btn img {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

.app-btn:hover img {
    transform: translateY(-2px);
}

.footer-company-logo {
    height: 32px;
    width: auto;
}

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

.footer-navbar .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: clamp(1rem, 1.2vw, 1.125rem); 
    font-weight: 500;
    transition: opacity 0.2s ease;
    padding: 0;
}

.footer-navbar .nav-link .iconify {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
}

.footer-navbar .nav-link:hover {
    opacity: 0.8; 
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 2.5rem 0;
    opacity: 1;
}

.copyright-text {
    font-size: clamp(0.75rem, 1vw, 0.875rem); 
    color: #FFFFFF;
    font-weight: 400;
}

.legal-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    transition: opacity 0.2s ease;
}

.legal-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.social-icons .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #FFFFFF;
    color: var(--red);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icons .social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .custom-footer {
        padding: 3rem 0 2rem 0;
    }
    
    .footer-divider {
        margin: 2rem 0;
    }
    
    .legal-links {
        line-height: 1.8;
    }
}