@font-face {
    font-family: 'Unitext';
    src: url('font/Unitext-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Unitext';
    src: url('font/Unitext-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Unitext', sans-serif;
}

body {
    background-color: #262626;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #262626;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
}

.loader-content {
    width: 50px;
    height: 50px;
    border: 5px solid #ffffff;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(38, 38, 38, 0.2);
    height: 80px;
    width: calc(100% - 40px);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.logo-image {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 10px;
}

.contact-btn {
    background: white;
    color: #262626;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.blur-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 1;
    overflow: hidden;
}

.blur-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 38, 38, 0.2);
    z-index: 2;
}

.blur-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(0.9) contrast(1.1);
    z-index: 1;
}

.blur-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(0.9) contrast(1.1);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 10;
    background: rgba(38, 38, 38, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 20px;
}

.slide-image {
    width: auto;
    height: 80px;
    overflow: hidden;
    border-radius: 20px;
}

.slide-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.slide-info {
    text-align: center;
    width: 100%;
}

.slide-info h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.slide-info p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Examine Button */
.examine-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.examine-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.examine-btn:hover::after {
    width: 100%;
}

/* Eski h3 ve link stillerini kaldırıyorum */
.slide-content h3,
.slide-link {
    display: none;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.slide-link {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #262626;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.slide-link:hover {
    transform: scale(1.05);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

/* Cards Container */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 150px 20px;
    min-height: 100vh;
    align-items: center;
    position: relative;
}

.card {
    width: 400px;
    height: 400px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: blur(2px);
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-30px);
    filter: blur(0);
    z-index: 2;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.card:hover .card-front img {
    opacity: 1;
}

.card-back {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(38, 38, 38, 0.9);
    color: white;
}

.card-link {
    margin-top: 20px;
    padding: 10px 20px;
    background: white;
    color: #262626;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 25px;
        height: 80px;
        width: 98%;
        top: 6px;
    }

    .logo-container {
        gap: 10px;
    }

    .logo-container h1 {
        font-size: 1.5rem;
    }

    .logo img {
        width: 20px;
        height: 20px;
    }

    .nav-btn img {
        height: 28px;
    }

    .slider-container {
        padding: 0;
        height: 100vh;
    }

    .slider {
        height: 100vh;
    }

    .slide {
        height: 100vh;
    }

    .slide-content {
        bottom: 20px;
        width: 95%;
        padding: 20px;
    }

    .slide-image {
        height: 60px;
    }

    .slide-info h2 {
        font-size: 1.3rem;
        font-family: 'Unitext', sans-serif;
    }

    .slide-info p {
        font-size: 0.8rem;
        font-family: 'Unitext', sans-serif;
    }

    .countdown {
        font-size: 1rem;
        font-family: 'Unitext', sans-serif;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 10px;
    }
}

@media (max-width: 480px) {
    * {
        font-family: 'Unitext', sans-serif;
    }
    
    header {
        padding: 10px 20px;
        height: 80px;
        width: 98%;
        top: 6px;
    }

    .logo-container {
        gap: 6px;
    }

    .logo-container h1 {
        font-size: 1.5rem;
    }

    .logo img {
        height: 15px;
    }

    .nav-btn img {
        height: 25px;
    }

    .slider-container {
        padding: 0;
    }

    .slide-content {
        bottom: 15px;
        padding: 15px;
        margin-bottom: 80px;
    }

    .slide-image {
        height: 50px;
    }

    .slide-info h2 {
        font-size: 1.1rem;
        font-family: 'Unitext', sans-serif;
    }

    .slide-info p {
        font-size: 0.7rem;
        font-family: 'Unitext', sans-serif;
    }

    .countdown {
        font-size: 0.9rem;
        font-family: 'Unitext', sans-serif;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .about-text {
        width: 100%;
        padding: 0;
        overflow: hidden;
        position: relative;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        width: 125%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-section {
        margin-top: -40px;
    }

    .about-content {
        padding: 30px;
        gap: 20px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .slide-info h2,
    .about-content h2,
    .countdown,
    .examine-btn,
    .contact-btn {
        font-weight: bold;
    }

    footer {
        position: fixed;
        bottom: 10px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 20px;
    }

    .copyright {
        margin-bottom: 10px;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 10px;
    filter: brightness(0) invert(1);
}

/* Nav Buttons */
.nav-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-btn img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.nav-btn:hover img {
    transform: scale(1.1);
}

/* Geri butonu için özel stil */
.nav-btn:first-child img {
    height: 30px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.about-content {
    background: rgba(38, 38, 38, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0;
}

.about-text {
    width: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0 40px;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.contact-item a:hover::after {
    width: 100%;
}

/* Footer */
footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.copyright {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.copyright::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.copyright:hover::after {
    width: 100%;
}

.countdown {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    cursor: default;
    display: inline-block;
}

.countdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.countdown:hover::after {
    width: 100%;
}

.countdown span {
    font-weight: 700;
    margin: 0 5px;
}

/* İletişim Formu Stilleri */
.contact-container {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.contact-container h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0 0 30px 0;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 200px;
    align-self: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 222, 56, 0.1);
}

.submit-btn:active {
    transform: translateY(0);
}

.tracking-result {
    text-align: center;
    padding: 20px;
}

.success-message {
    color: #ffffff;
}

.success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: #4CAF50;
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 10px 0;
}

.success-message strong {
    color: #4CAF50;
    font-size: 1.3rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
    
    .success-message i {
        font-size: 3rem;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 80px 10px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Takip Sayfası Stilleri */
.message-details {
    color: #ffffff;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.message-details h3 {
    color: #4CAF50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.message-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
	margin: 20px -176px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-row strong {
    color: #4CAF50;
    min-width: 100px;
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
	margin: 20px -176px;
}

.message-content strong {
    color: #4CAF50;
    display: block;
    margin-bottom: 10px;
}

.message-content p {
    line-height: 1.6;
    margin: 0;
}

.response-section {
    background: rgba(76, 175, 80, 0.1);
    padding: 20px;
    border-radius: 10px;
	margin: 20px -176px;
}

.response-section strong {
    color: #4CAF50;
    display: block;
    margin-bottom: 10px;
}

.response-section p {
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.response-section small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.error-message {
    text-align: center;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.error-message i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.error-message p {
    margin: 0;
    font-size: 1.1rem;
}

.tracking-link {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.tracking-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #4CAF50);
} 