/* General Styles */
body {
    font-family: 'Product Sans', 'Product Sans Thin', 'Product Sans Light', 'Product Sans Medium', 'Product Sans Black', sans-serif;
    color: #e91a3f;
	background: #f8fcfe;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}

/* Modern Button Styles */
.btn-primary, .btn-outline-primary, .btn {
    border-radius: 32px;
    font-size: 1.20rem;
    font-family: 'Product Sans Medium', 'Product Sans', sans-serif;
    padding: 12px 36px;
    box-shadow: 0 4px 16px 0 rgba(52, 152, 219, 0.10);
    transition: all 0.2s cubic-bezier(.4,0,.2,1);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(90deg, #e91a3f 0%, #af0120 100%);
    border: none;
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(90deg, #af0120 0%, #e91a3f 100%);
    color: #fff;
    box-shadow: 0 6px 24px 0 rgba(233,26,63,0.15);
    transform: translateY(-2px) scale(1.03);
}

.btn-outline-primary {
    background: #fff;
    color: #e91a3f;
    border: 2px solid #e91a3f;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: linear-gradient(90deg, #e91a3f 0%, #ff6a00 100%);
    color: #fff;
    border: 2px solid #e91a3f;
    box-shadow: 0 6px 24px 0 rgba(233,26,63,0.10);
    transform: translateY(-2px) scale(1.03);
}

.btn:active {
    transform: scale(0.97);
    box-shadow: none;
}

/* Form Elements */
.form-control, .form-select {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.form-control:focus, .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Features List */
.list-unstyled li {
    margin-bottom: 10px;
}

.list-unstyled i {
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

/* Hero Animated Subtitle */
.hero-animated-subtitle {
    min-height: 48px;
    font-size: 50px;
    color: #e91a3f;
    font-family: 'Product Sans Black';
}

#animated-subtitle {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.5s;
}

.fade-in {
    animation: fadeInSubtitle 0.7s;
}

@keyframes fadeInSubtitle {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Başlıkları */
.hero-section h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Product Sans Black';
    color: #000 !important;
}

.hero-section .text-primary {
    color: #3498db !important;
}

h1, h2, h3, h4, h5, h6, .text-primary, .hero-section h1, .hero-animated-subtitle {
    color: #e91a3f !important;
}

a, .nav-link {
    color: #e91a3f;
}

a:hover, .nav-link:hover {
    color: #ff6a00;
} 
.hero-section .text-primary {
    color: #000 !important;
}

/* Paket Kartları Modern Tasarım */
.package-cards .package-card {
    border: none;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(233,26,63,0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    background: #fff;
    /* min-height: 340px;*/
}
.package-cards .package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px 0 rgba(233,26,63,0.18), 0 2px 8px 0 rgba(0,0,0,0.06);
}
.package-cards .card-body {
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
}
.package-cards img {
    margin-bottom: 0.7rem;
    width: 56px;
    height: 56px;
}
.package-cards h5 {
    font-size: 1.45rem;
    font-family: 'Product Sans Black', 'Product Sans', sans-serif;
    margin-bottom: 0.5rem;
    color: #e91a3f;
}
.package-cards .old-price {
    font-size: 1.1rem;
    color: #000;
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}
.package-cards .price {
    font-size: 2.1rem;
    font-family: 'Product Sans Black', 'Product Sans', sans-serif;
    color: #e91a3f;
    margin-bottom: 0.2rem;
}
.package-cards .installment {
    font-size: 1.05rem;
    color: #009e60;
    margin-bottom: 0.7rem;
}
.package-cards .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 10px 0;
    border-radius: 24px;
}
@media (max-width: 767px) {
    .package-cards .package-card {
        min-height: 280px;
    }
    .package-cards h5 {
        font-size: 1.15rem;
    }
    .package-cards .price {
        font-size: 1.4rem;
    }
}

.package-compare-title {
    color: #000 !important;
    font-family: 'Product Sans Black';
    font-size: 2.4rem;
}
.package-compare-subtitle {
    color: #000 !important;
    font-family: 'Product Sans Black';
    font-size: 1.4rem;
}

.table>:not(caption)>*>* {
    padding: .8rem .8rem;

}
