/* style.css */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Navbar'ın altında kalmaması için kaydırma payı */
}

:root {
    --primary-blue: #007bff;
    --dark-navy: #0a192f;
    --light-bg: #f8f9fa;
    --text-gray: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    padding: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-navy) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    color: white;
}

.btn-outline-custom {
    color: var(--dark-navy);
    border: 2px solid var(--dark-navy);
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: transparent;
}

.btn-outline-custom:hover {
    background-color: var(--dark-navy);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Feature Cards */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 123, 255, 0.2);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Teklif Al (Pricing) Section */
.pricing-section {
    background-color: #f8f9fa;
}

.pricing-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 123, 255, 0.2);
}

.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.12);
}

.pricing-card.enterprise-card {
    background: linear-gradient(145deg, #0a192f 0%, #112240 100%);
    border-color: transparent;
}

.pricing-card.enterprise-card .card-title,
.pricing-card.enterprise-card .card-text,
.pricing-card.enterprise-card .pricing-features li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pricing-card.enterprise-card .pricing-features i {
    color: #64b5f6;
}

.pricing-card.enterprise-card .btn-outline-custom {
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.pricing-card.enterprise-card .btn-outline-custom:hover {
    background-color: white;
    color: var(--dark-navy);
}

/* Pricing Icon Badge */
.pricing-badge-wrapper {
    display: flex;
}

.pricing-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon-badge {
    transform: scale(1.12);
}

.pricing-icon-badge.popular-badge {
    background: rgba(0, 123, 255, 0.15);
    color: var(--primary-blue);
}

.pricing-icon-badge.enterprise-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--dark-navy);
    font-weight: 500;
    font-size: 0.9rem;
}

.pricing-features i {
    font-size: 1.1rem;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--primary-blue);
}

/* Contact Form Specifics */
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    padding: 60px 0 30px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-blue);
}