body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 70px; /* footer yüksekliğine göre ayarlayın */
}

.search-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    width: 160px;
    margin-bottom: 25px;
}

.search-card {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 50px 25px 25px; /* Üst padding'i artırıyoruz */
    background-color: white;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.search-input {
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.search-input:focus {
    box-shadow: none;
    border-color: rgba(106, 17, 203, 0.4);
}

.search-button {
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

/* input-group sınıflarını kaldırıyoruz çünkü artık kullanmıyoruz */
.search-group {
    width: 100%;
}

/* Ekranda 768px'den büyük cihazlar için yatay düzen */
@media (min-width: 768px) {
    .search-group {
        display: flex;
        gap: 10px;
    }
    
    .search-input {
        flex: 1;
        margin-bottom: 0 !important;
    }
    
    .search-button {
        width: auto !important;
    }
}

.feature-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.footer {
    margin-top: 50px;
    padding: 20px 0;
    color: #6c757d;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    z-index: 1000;
}

/* Modern Feature Cards */
.feature-card {
    border-radius: 16px;
    border: none;
    background: #ffffff;
    padding: 10px;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 16px 16px 0 0;
}

.feature-card .card-body {
    padding: 1.8rem 1.5rem 1.5rem;
}

.icon-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    background: rgba(37, 117, 252, 0.1);
    border-radius: 12px;
    transform: rotate(10deg);
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(106, 17, 203, 0.1);
    border-radius: 12px;
    top: 0;
    left: 0;
    transform: rotate(-20deg);
    z-index: 0;
}

.feature-icon {
    position: absolute;
    font-size: 1.8rem;
    color: #2575fc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

/* Verification Result Page Styles */
.result-card {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background-color: white;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.result-header {
    padding: 25px;
    text-align: center;
    position: relative;
    color: white;
}

.result-success {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.result-danger {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.result-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.result-icon {
    font-size: 2.5rem;
}

.result-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.result-body {
    padding: 30px 25px;
}

.product-code {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.code-label {
    font-weight: 600;
    margin-right: 10px;
    color: #6c757d;
}

.code-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
    letter-spacing: 1px;
}

.product-details {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.details-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.details-label {
    font-weight: 600;
    color: #6c757d;
}

.details-value {
    color: #212529;
}

.verification-warning {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-top: 15px;
}

.query-warning {
    background-color: #fff4e5;
    border-left: 4px solid #fd7e14;
}

.text-warning {
    color: #fd7e14 !important;
    font-weight: 600;
}

.text-success {
    color: #28a745 !important;
    font-weight: 600;
}

.result-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn, .contact-btn {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.back-btn {
    background-color: #f8f9fa;
    color: #2575fc;
    border: 1px solid #e9ecef;
}

.back-btn:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

.contact-btn {
    background-color: #6a11cb;
    background-image: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.share-btn {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.verification-info {
    margin-top: 30px;
}

.info-card {
    border-radius: 16px;
    border: none;
    background: #f8f9fa;
    padding: 10px;
}

.info-card .card-body {
    padding: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #6a11cb;
    margin-bottom: 15px;
}

.info-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* QR Code Styling */
.product-qr {
    max-width: 160px; /* 160px olarak küçülttüm (çerçeve ile birlikte ~130px olacak) */
    height: auto;
    padding: 5px; /* İç boşluğu 5px olarak ayarladım */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef; /* Çerçeve ekledim */
    margin: 0 auto 15px; /* Alt marjini arttırdım */
}

/* Mobile responsiveness for verify page */
@media (max-width: 767px) {
    .result-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-btn, .contact-btn {
        width: 100%;
    }
    
    .details-row {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .details-value {
        margin-top: 5px;
        font-weight: 500;
    }
}

/* Contact Page Styles */
.contact-card {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background-color: white;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-header {
    padding: 25px;
    text-align: center;
    position: relative;
    color: white;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.contact-body {
    padding: 30px 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background-color: #f8f9fa;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-method-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-method-info {
    flex-grow: 1;
}

.contact-method-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.contact-method-info p {
    margin-bottom: 0;
    color: #6c757d;
}

.contact-method-info a {
    color: #2575fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-info a:hover {
    color: #6a11cb;
}

.contact-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 25px;
    display: flex;
    justify-content: center;
}

.contact-form-section {
    margin-top: 30px;
}

.contact-form-section .form-control {
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-section .form-control:focus {
    box-shadow: none;
    border-color: rgba(106, 17, 203, 0.4);
}

/* Verify Page Header */
.verify-header {
    margin-bottom: 40px;
    position: relative;
}

.page-title {
    font-size: 2rem; /* Boyutu küçülttüm (2.5rem'den 2rem'e) */
    font-weight: 600; /* Kalınlığı azalttım (700'den 600'e) */
    margin-bottom: 1.5rem;
    color: #333; /* Gradyan yerine düz renk kullandım */
    display: inline-block;
    position: relative;
}

.verify-header .lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #495057;
}