:root {
    --primary-green: #35b54a;
    --primary-green-dark: #2f9d41;
    --primary-blue: #2c5282;
    --text-dark: #1e3a5f;
    --text-light: #666;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    background: transparent;
    padding: 1rem 0;
    box-shadow: 0px -6px 34px black;
    position: relative;
    z-index: 10;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: white !important;
    text-decoration: none;
}

.navbar-brand-logo {
    max-width: 260px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 15px;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.navbar-nav .nav-link:hover {
    opacity: 0.85;
}

.btn-teklif {
    background: var(--primary-green);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
    display: inline-block;
}

.navbar-nav .nav-item-teklif {
    flex-shrink: 0;
    margin-left: 0.25rem;
}

/* Sağ kenar auth sticky panel: sadece giriş/kayıt veya kullanıcı menüsü; sayfa ayıracı gibi, boydan boya değil */
.header-wrapper {
    position: relative;
}

.header-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 72px;
    height: auto;
    min-height: auto;
    z-index: 1000;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 0 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 1.25rem;
    gap: 0.25rem;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.15);
}

.header-sidebar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}

.header-sidebar-item,
.header-sidebar-item-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.header-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.header-sidebar-item-form {
    padding: 0;
}

.header-sidebar-item i {
    font-size: 1.25rem;
}

.header-sidebar-label {
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.header-sidebar-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.header-sidebar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-green, #35b54a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-sidebar-name {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 64px;
}

.header-sidebar-logout:hover {
    color: #f87171 !important;
}

.btn-teklif:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 181, 74, 0.3);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 700px;
    padding: 0px 0px 0px 0px;
    overflow: hidden;
}

/* Hero Background Images */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-img.active {
    opacity: 1;
}
.sublayer {
    position: relative;
    min-height: 100px;
    background-image: url('/images/sublayer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 0px 0px 0px;
    overflow: hidden;
    z-index: 99;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}
.hero-text ul {
    color: white;
    padding-left: 0px !important;
}
.hero-title-highlight {
        background: linear-gradient(30deg, #35b54a 0%, #2c5e82 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
        .hero-title {
            font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    padding-top: 20px;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
}

.hero-features {
    list-style: none;
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-features li {
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(53, 181, 74, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-secondary-white {
    background: white;
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 15px;
    border: none;
}

.btn-secondary-white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    color: var(--primary-blue);
}

/* People Images Container */
.hero-people-container {
        position: relative;
    width: 100%;
    max-width: 700px;
    height: 531px;
    margin: 0px 0px 0px 0px;
    top: 130px;
}

.hero-people-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 20px;
}

.hero-people-img.active {
    opacity: 1;
}

.hero-people-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    border-radius: 10px;
}

.hero-people-text.active {
    opacity: 1;
}

@media (max-width: 991px) {
    .hero-people-text {
        opacity: 0;
        
    }
    
    .hero-people-text.active {
        opacity: 1 !important;
    }
}

.hero-people-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-people-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}

/* Page Hero (inner pages: for-landlords, about, etc.) - V3 emlak-sahipleri.html ile uyumlu */
.page-hero {
    position: relative;
    min-height: 500px;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 0;
    padding-bottom: 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(44, 82, 130, 0.75) 100%);
    z-index: 0;
}

.page-hero .navbar {
    position: relative;
    z-index: 5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-top: 110px; /* navbar yüksekliği altında kalması için (içerik navbar'da görünmesin) */
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.page-hero .page-hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* How it works – step cards (modern layout with images) */
.step-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 82, 130, 0.05);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.08) 0%, rgba(53, 181, 74, 0.08) 100%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(44, 82, 130, 0.15);
}

.step-number-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 72px;
    font-weight: 900;
    color: #e8ecf0;
    line-height: 1;
    z-index: 1;
    opacity: 0.6;
    font-family: Arial, sans-serif;
}

.step-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(44, 82, 130, 0.25);
    position: relative;
    z-index: 2;
}

.step-icon-wrapper--green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 10px 25px rgba(53, 181, 74, 0.25);
}

.step-icon-wrapper--mixed {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    box-shadow: 0 10px 25px rgba(44, 82, 130, 0.25);
}

.step-icon-wrapper i {
    font-size: 40px;
    color: white;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    margin-top: 0;
}

.step-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.step-list li i {
    color: var(--primary-green);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.step-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-connector {
    text-align: center;
    font-size: 48px;
    color: var(--primary-blue);
    margin: -30px 0;
    opacity: 0.3;
    z-index: 1;
    position: relative;
}

.step-connector i {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 50%;
}

.step-alert {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
}

.step-alert p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.card-custom {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
    text-align: center;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.card-custom--gradient {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

/* Apply form pages (landlord / tenant) */
.card-custom--form {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-page-title {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 28px;
}

.form-section-title {
    color: var(--primary-blue);
    font-weight: 700;
}

.form-info-box {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-blue);
}

.btn-submit {
    background: var(--primary-green);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 181, 74, 0.3);
    color: white;
}

.content-section .section-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Packages page – modern pricing (V3 style) */
.content-section--packages {
    padding: 100px 0;
}

.section-title--packages,
.content-section--packages .section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-wrapper {
    margin-bottom: 80px;
}

.pricing-card {
    background: white;
    border-radius: 28px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(44, 82, 130, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(44, 82, 130, 0.2);
}

.pricing-card--featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(53, 181, 74, 0.2);
}

.pricing-card--featured::before {
    height: 8px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 28px 28px 0 0;
}

.pricing-header {
    padding: 40px 40px 30px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(53, 181, 74, 0.3);
}

.pricing-card--featured .pricing-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.pricing-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.pricing-description {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.pricing-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.8;
}

.pricing-period {
    font-size: 16px;
    color: #999;
    margin-left: 8px;
}

.pricing-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    border-left: 4px solid var(--primary-blue);
}

.pricing-card--featured .pricing-note {
    background: linear-gradient(135deg, rgba(53, 181, 74, 0.1) 0%, rgba(53, 181, 74, 0.05) 100%);
    border-left-color: var(--primary-green);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.pricing-features li i {
    color: var(--primary-green);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    display: block;
    transition: all 0.3s;
    border: none;
    font-size: 17px;
    box-shadow: 0 6px 20px rgba(53, 181, 74, 0.25);
    margin-top: auto;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, #2a8a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(53, 181, 74, 0.35);
    color: white;
}

.pricing-card--featured .btn-pricing {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.25);
}

.pricing-card--featured .btn-pricing:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #152a47 100%);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.35);
    color: white;
}

.info-section {
    background: white;
    border-radius: 28px;
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
    text-align: center;
    border: 2px solid rgba(44, 82, 130, 0.1);
}

.info-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--primary-blue);
}

.info-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.info-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.info-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 20px 30px;
    border-radius: 12px;
    margin-top: 30px;
    font-size: 15px;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 80px;
    border-radius: 28px;
}

.comparison-section .section-title--packages {
    margin-bottom: 15px;
}

.comparison-section .section-subtitle {
    margin-bottom: 0;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.comparison-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
}

.comparison-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.comparison-card-text {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Form Card */
.form-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    margin-top: -130px;
    z-index: 999999;
}

@media (max-width: 991px) {
    .form-card {
        position: relative;
        margin-top: 0;
        margin-bottom: 30px;
    }
}

.form-header {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px 30px;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0;
}

.form-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
    height: 40px;
}

textarea.form-control {
    height: auto;
    min-height: 150px; /* yaklaşık 6-7 satır */
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 40px;
}

select.form-control option {
    padding: 10px;
}

.btn-form-submit {
    width: 100%;
    background: var(--primary-green);
    color: white;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-form-submit:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 181, 74, 0.3);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
}

.form-note i {
    font-size: 18px;
}

/* FAQ Card */
.faq-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 30px;
}

.faq-section-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-image-container {
    flex: 0 0 350px;
}

.faq-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.faq-content-container {
    flex: 1;
}

.faq-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #333;
    font-size: 15px;
    text-align: left;
    transition: all 0.3s;
}

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

.faq-question i {
    color: #999;
    transition: transform 0.3s;
    font-size: 18px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    padding: 0 20px;
}

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

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    padding-left: 0;
}

.steps-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.steps-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.step-features li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.step-features li i {
    color: var(--primary-green);
    font-size: 18px;
}

.btn-step {
    width: 100%;
    background: var(--primary-green);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    display: block;
    transition: all 0.3s;
    border: none;
}

.btn-step:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 181, 74, 0.3);
    color: white;
}

.btn-step-dark {
    background: var(--primary-blue);
}

.btn-step-dark:hover {
    background: #1e3a5f;
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.footer a:hover {
    color: white;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: white;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 10px;
}

.dropdown-item {
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
}

.dropdown-toggle::after {
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    /* Mobile Menu Improvements */
    .navbar-collapse {
        background: rgba(30, 58, 95, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin-top: 20px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        max-height: 85vh;
        overflow-y: auto;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item.dropdown {
        position: relative;
    }

    .nav-item.dropdown .dropdown-menu {
        margin-top: 0 !important;
    }

    .nav-link {
        padding: 18px 15px !important;
        font-size: 16px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 !important;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255,255,255,0.1) !important;
        opacity: 1 !important;
    }

    .dropdown-toggle::after {
        margin-left: auto !important;
        margin-right: 0 !important;
        transition: transform 0.3s;
        border-width: 0.3em 0.3em 0 !important;
        border-top-color: rgba(255,255,255,0.9) !important;
        opacity: 1 !important;
        width: 0;
        height: 0;
        vertical-align: 0.3em;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
        border-top-color: rgba(255,255,255,1) !important;
    }

    .dropdown-menu {
        background: rgba(255,255,255,0.1) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        margin-top: 8px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 8px !important;
        border-radius: 8px;
        padding: 8px 0 !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        position: static !important;
        width: 100% !important;
        float: none !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        display: none;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-item {
        color: rgba(255,255,255,0.9) !important;
        padding: 14px 25px !important;
        font-size: 15px;
        border-radius: 0;
        margin: 0 !important;
        display: block;
        width: 100%;
    }

    .dropdown-item:first-child {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .dropdown-item:last-child {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(255,255,255,0.2) !important;
        color: white !important;
    }

    .btn-teklif {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        padding: 16px 28px;
        font-size: 16px;
    }

    .navbar-toggler {
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        padding: 8px 12px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    }

    .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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .hero-title {
        font-size: 42px;
        padding-top: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-people-container {
        height: 400px;
        margin-top: 40px;
    }

    .hero-people-title {
        font-size: 22px;
    }

    .hero-people-subtitle {
        font-size: 14px;
    }

    .hero-people-text {
        bottom: 15px;
        left: 15px;
        right: 15px;
        z-index: 20;
        display: block !important;
        padding: 12px 15px;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    }

    .hero-people-text.active {
        opacity: 1 !important;
        display: block !important;
    }

    .steps-section {
        padding-left: 0;
        margin-top: 40px;
    }

    .steps-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .step-connector {
        display: none;
    }

    .step-card {
        padding: 30px 20px;
    }

    .card-custom {
        padding: 35px 25px;
    }

    .section-title--packages {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .pricing-title {
        font-size: 26px;
    }

    .pricing-price {
        font-size: 42px;
    }

    .info-title {
        font-size: 26px;
    }

    .hero-title {
        font-size: 32px;
        padding-top: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features li {
        font-size: 16px;
    }

    .hero-people-container {
        height: 350px;
    }

    .hero-people-title {
        font-size: 18px;
    }

    .hero-people-subtitle {
        font-size: 13px;
    }

    .hero-people-text {
        bottom: 55px;
        left: 15px;
        right: 15px;
        z-index: 20;
        display: block !important;
        padding: 32px 12px;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    }

    .hero-people-text.active {
        opacity: 1 !important;
        display: block !important;
    }

    .content-section {
        padding: 40px 0;
    }

    .step-card {
        padding: 35px 25px;
        margin-bottom: 40px;
    }

    .step-number-badge {
        font-size: 56px;
        top: 20px;
        right: 20px;
    }

    .step-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .step-icon-wrapper i {
        font-size: 35px;
    }

    .step-card h3 {
        font-size: 24px;
    }

    .step-image {
        height: 250px;
    }

    .pricing-card--featured {
        transform: scale(1);
    }

    .pricing-card--featured:hover {
        transform: translateY(-12px);
    }

    .pricing-image {
        height: 220px;
    }

    .pricing-header {
        padding: 30px 25px 25px;
    }

    .pricing-price {
        font-size: 48px;
    }

    .info-section {
        padding: 40px 30px;
    }

    /* Fix selectbox on mobile */
    select.form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding-right: 40px;
        background-position: right 12px center;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .form-body, .faq-card {
        padding: 20px;
    }

    .steps-cards {
        grid-template-columns: 1fr;
    }

    .faq-section-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .faq-image-container {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .faq-image-container img {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-secondary-white {
        width: 100%;
        text-align: center;
    }
}
