/* Author: Fatih Ç */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    line-height: 1.6;
}

/* Bootstrap ile uyumluluk için */
:root {
    --bs-font-sans-serif: 'Poppins', sans-serif;
}

body, .btn, .form-control, .form-label {
    font-family: 'Poppins', sans-serif;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, #0a4d68 0%, #0d6b8f 100%);
    color: white;
    padding: 40px 40px 80px;
 
    position: relative;
}

/* Bootstrap Navbar Customization */
.navbar {
    padding: 1rem 2rem;
    background: transparent !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000 !important;
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    color: #333333 !important;
}

.navbar-nav .nav-link {
    color: #000000 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    font-size: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #333333 !important;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .btn {
    margin-left: 0.5rem;
}

@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .ms-2 {
        margin-left: 0 !important;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: #f59e0b;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #0a4d68;
    text-decoration: none;
  
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-icon {
    font-size: 20px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f9fafb;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
}

.phone-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-logo {
    font-size: 20px;
    font-weight: 700;
    color: #0a4d68;
    text-align: center;
}

.phone-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.phone-credit {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.phone-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    padding: 8px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
    color: #1f2937;
}

.phone-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.category-item {
    padding: 8px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
    color: #1f2937;
}

.phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px;
    background: white;
    border-top: 1px solid #e5e7eb;
    font-size: 18px;
}

.how-it-works-section {
    background: #f9fafb;
}

.feature-highlights {
    /* Bootstrap grid kullanıldığı için bu stil artık gerekli değil */
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
    background: #f9fafb;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
}

.step-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0a4d68;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.step-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: #f9fafb;
}

.feature-box {
    background: #d1fae5;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
}

.faq-list {
    /* Bootstrap grid handles width */
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1f2937;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-toggle {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 18px;
    color: #4b5563;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-btn-primary {
    padding: 14px 32px;
    background: #0a4d68;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
}

.cta-btn-primary:hover {
    background: #0d6b8f;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    padding: 14px 32px;
    background: white;
    color: #0a4d68;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0a4d68;
    transition: background 0.2s, transform 0.2s;
}

.cta-btn-secondary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

.cta-section .app-buttons {
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e5e7eb;
}

.footer-left {
    font-size: 14px;
    color: #6b7280;
}

.footer-center a {
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-center a:hover {
    color: #0a4d68;
}

.footer-right {
    font-size: 14px;
    color: #6b7280;
}

.footer-right a {
    color: #0a4d68;
    text-decoration: none;
}

.lawyer-login-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: #0a4d68;
    color: white !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.lawyer-login-link:hover {
    background: #0d6b8f;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    /* Bootstrap grid handles responsive layout */
    
    /* Bootstrap grid handles responsive layout */
    
    .feature-highlights {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 20px 20px 60px;
        min-height: auto;
    }
    
    .nav-bar {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .app-btn {
        justify-content: center;
    }
    
    /* Bootstrap grid handles responsive layout automatically */
    
    /* Bootstrap grid handles responsive layout automatically */
    
    /* Bootstrap grid handles responsive layout automatically */
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .features-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-section .section-subtitle {
    color: #64748b;
    font-size: 18px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-card .form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.contact-card .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s;
}

.contact-card .form-control:focus {
    border-color: #0a4d68;
    box-shadow: 0 0 0 4px rgba(10, 77, 104, 0.1);
}

.contact-card .btn-primary {
    background: linear-gradient(135deg, #0a4d68 0%, #0d6b8f 100%);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.3);
}

.contact-card .alert {
    border-radius: 12px;
    border: none;
}

.contact-card .alert-success {
    background: #d1fae5;
    color: #065f46;
}

.contact-card .alert-danger {
    background: #fee2e2;
    color: #dc2626;
}

/* Turnstile styling */
.cf-turnstile {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 24px;
    }
}

