 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

 /* Genel Stiller */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Montserrat, 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     background-color: #f8f9fa;
     color: #333;
     line-height: 1.6;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .section-title {
     text-align: center;
     margin-bottom: 30px;
     font-size: 32px;
     color: #2771BE;
     position: relative;
 }

 .section-title:after {
     content: '';
     display: block;
     width: 80px;
     height: 3px;
     background: #3498db;
     margin: 10px auto;
 }

 .btn {
     display: inline-block;
     padding: 12px 25px;
     background-color: #3498db;
     color: white;
     text-decoration: none;
     border-radius: 0px;
     font-weight: 600;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .btn:hover {
     background-color: #2980b9;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 /* Header */
 header {
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .header-top {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
 }

 .logo {
     font-size: 22px;
     font-weight: 700;
     color: #57B2E7;
     font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     -o-user-select: none;
     user-select: none;
     cursor: pointer;
     text-decoration: none;
 }

 .logo span {
     color: #ffffff;
     background: linear-gradient(180deg, rgba(39, 113, 190, 1) 0%, rgba(105, 195, 247, 1) 100%);
     border-radius: 150rem;
     width: 50px;
     font-weight: 600;
     height: 50px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
     font-size: 23px;
     font-weight: 700;
 }

 .logo span b {
     font-weight: 700;
     font-size: 22px;
     margin-bottom: -1px;
     margin-left: 2px;
 }

 nav ul {
     display: flex;
     list-style: none;
     align-items: flex-end;
 }

 nav ul li {
     margin-left: 20px;
 }

 nav ul li a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     transition: color 0.3s;
     padding: 5px 10px;
     border-radius: 4px;
 }

 nav ul li a:hover {
     color: #2c78c3;
     background-color: #f5f7fa;
 }

 .auth-buttons a {
     text-decoration: none;
     margin-left: 15px;
     padding: 8px 15px;
     border-radius: 0px;
     font-weight: 500;
 }

 .login-btn {
     color: #57B2E7;
     border: 1px solid #57B2E7;
 }

 .register-btn {
     background-color: #57B2E7;
     color: white;
 }

 /* Hero Bölümü */
 .hero {
     background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     color: white;
     padding: 120px 0;
     text-align: center;
     position: relative;
 }

 .hero h1 {
     font-size: 42px;
     margin-bottom: 20px;
     animation: fadeInDown 1s;
 }

 .hero p {
     font-size: 18px;
     max-width: 700px;
     margin: 0 auto 30px;
     animation: fadeInUp 1s;
 }

 .search-box {
     background-color: white;
     border-radius: 8px;
     padding: 20px;
     max-width: unset;
     margin: 0 auto;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     animation: fadeIn 1.5s;
 }

 .search-form {
     display: flex;
     gap: 10px;
 }

 .search-input {
     flex: 1;
     padding: 15px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-size: 16px;
 }

 .search-btn {
     background-color: #57B2E7;
     color: white;
     border: none;
     padding: 15px 30px;
     border-radius: 4px;
     cursor: pointer;
     font-weight: 600;
     transition: background-color 0.3s;
 }

 .search-btn:hover {
     background-color: #2c77a3;
 }

 /* Popüler Kategoriler */
 .popular-categories {
     padding: 80px 0;
 }

 .owl-carousel .owl-stage {
     display: flex;
 }

 .owl-carousel .owl-item {
     display: flex;
     justify-content: center;
 }

 .category-card {
     background-color: white;
     border-radius: 8px;
     padding: 25px 20px;
     text-align: center;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s, box-shadow 0.3s;
     cursor: pointer;
     margin: 10px;
     width: 100%;
     max-width: 300px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
 }

 .category-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .category-icon {
     font-size: 40px;
     margin-bottom: 15px;
     filter: invert(36%) sepia(40%) saturate(924%) hue-rotate(169deg) brightness(109%) contrast(95%);
 }

 .category-card h3 {
     font-size: 18px;
     margin-bottom: 10px;
 }

 .category-card p {
     color: #666;
     font-size: 14px;
 }

 .owl-nav {
     text-align: center;
     margin-top: 20px;
     display: flex;
     justify-content: space-between;
     margin: 0 -30px;
     background-color: #addaf8;
 }

 .owl-prev,
 .owl-next {
     background: #3498db !important;
     color: white !important;
     width: 40px;
     height: 40px;
     border-radius: 0 !important;
     margin: 0 10px;
     display: inline-flex !important;
     align-items: center;
     justify-content: center;
 }

 /* Tüm Kategoriler */
 .all-categories {
     padding: 80px 0;
     background-color: #f1f5f9;
 }

 .categories-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 20px;
 }

 /* Neden Biz */
 .why-us {
     padding: 80px 0;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background-color: white;
     border-radius: 8px;
     padding: 30px;
     text-align: center;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
 }

 .feature-card:hover {
     transform: translateY(-5px);
 }

 .feature-icon {
     font-size: 40px;
     color: #3498db;
     margin-bottom: 20px;
     margin-left: auto;
     margin-right: auto;
 }

 .feature-icon i {
     font-size: 41px;
 }

 .feature-card h3 {
     margin-bottom: 15px;
     font-size: 20px;
 }

 /* Popüler Firmalar */
 .popular-companies {
     padding: 80px 0;
     background-color: #f1f5f9;
 }

 .companies-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .company-card {
     background-color: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s;
     text-decoration: none;
     color:  #2771BE;
 }

 .company-card:active,
 .company-card:focus {
     color: #18487b;
 }

 .company-card:hover {
      color: #18487b;
     transform: translateY(-5px);
 }

 .company-logo {
     height: 150px;
     background-color: #f8f9fa;
     display: flex;
     align-items: center;
     justify-content: center;
     border-bottom: 1px solid #eee;
 }

 .company-logo img {
     max-width: 80%;
     max-height: 100px;
 }

 .company-info {
     padding: 20px;
 }

 .company-name {
     font-weight: 600;
     margin-bottom: 5px;
     font-size: 18px;
     text-decoration: #2c78c3;
     text-decoration-color: #2c78c3;
 }

 .company-name:focus,
 .company-name:active {
     color: #2c78c3;
 }

 .company-category {
     color: #666;
     font-size: 14px;
     margin-bottom: 10px;
 }

 .company-rating {
     color: #ffc107;
     margin-bottom: 10px;
 }

 .company-location {
     color: #777;
     font-size: 14px;
     display: flex;
     align-items: center;
 }

 .company-location i {
     margin-right: 5px;
 }

 /* Rastgele Firmalar */
 .random-companies {
     padding: 80px 0;
 }

 .company-carousel .company-card {
     margin: 10px;
     min-width: 260px;
 }

 /* List Page */

 /* Arama Başlığı */
 .search-header {
     background-color: #2c78c3;
     color: white;
     padding: 30px 0;
 }

 .search-header h1 {
     font-size: 32px;
     margin-bottom: 10px;
 }

 .search-box {
     background-color: white;
     border-radius: 8px;
     padding: 20px;
     margin-top: 20px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .search-form {
     display: flex;
     gap: 10px;
 }

 .search-input {
     flex: 1;
     padding: 15px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-size: 16px;
 }


 /* Filtreler ve Sonuçlar */
 .search-results {
     padding: 40px 0;
 }

 .results-container {
     display: grid;
     grid-template-columns: 280px 1fr;
     gap: 30px;
 }

 /* Filtreler */
 .filters-sidebar {
     background-color: white;
     border-radius: 8px;
     padding: 25px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     height: fit-content;
     position: sticky;
     top: 100px;
 }

 .filter-group {
     margin-bottom: 25px;
     border-bottom: 1px solid #eee;
     padding-bottom: 20px;
 }

 .filter-group:last-child {
     border-bottom: none;
     margin-bottom: 0;
 }

 .filter-title {
     font-weight: 600;
     margin-bottom: 15px;
     font-size: 18px;
     color: #2c3e50;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .filter-search {
     width: 100%;
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 4px;
     margin-bottom: 15px;
     font-size: 14px;
 }

 .filter-options {
     display: flex;
     flex-direction: column;
     gap: 12px;
     max-height: 200px;
     overflow-y: auto;
     padding-right: 5px;
 }

 .filter-options::-webkit-scrollbar {
     width: 6px;
 }

 .filter-options::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 10px;
 }

 .filter-options::-webkit-scrollbar-thumb {
     background: #c1c1c1;
     border-radius: 10px;
 }

 .filter-option {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .filter-option input {
     width: 18px;
     height: 18px;
 }

 .filter-option label {
     cursor: pointer;
     font-size: 15px;
 }

 .rating-stars {
     color: #ffc107;
     margin-right: 5px;
 }

 .rating-options {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .rating-option {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 /* Sonuçlar */
 .results-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
 }

 .results-count {
     color: #666;
     font-size: 16px;
 }

 .sort-options {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .sort-select {
     padding: 8px 12px;
     border: 1px solid #ddd;
     border-radius: 4px;
     background-color: white;
 }

 .new-select {
     padding: 8px 12px;
     width: 100%;
     border: 1px solid #ddd;
     border-radius: 4px;
     background-color: white;
 }

 .results-grid {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .result-item {
     background-color: white;
     border-radius: 8px;
     padding: 25px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     display: inline-flex;
     gap: 20px;
     transition: transform 0.3s, box-shadow 0.3s;
     text-decoration: none;
     border: none;
     cursor: pointer;
 }

 .result-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .result-logo {
     width: 120px;
     height: 120px;
     background-color: #f8f9fa;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     border: 1px solid #eee;
 }

 .result-info {
     flex: 1;
     text-align: left;
 }

 .result-name {
     font-size: 32px;
     font-weight: 600;
     margin-bottom: 5px;
     color: #2c3e50;
 }

 .result-category {
     color: #2c78c3;
     margin-bottom: 10px;
     font-weight: 500;
 }

 .result-description {
     margin-bottom: 15px;
     color: #555;
     line-height: 1.5;
 }

 .result-meta {
     display: flex;
     gap: 20px;
     color: #666;
     font-size: 14px;
 }

 .result-rating {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .result-actions {
     display: flex;
     gap: 10px;
     margin-top: 15px;
 }

 .action-btn {
     padding: 8px 15px;
     border-radius: 4px;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
 }

 .detail-btn {
     background-color: #3498db;
     color: white;
     border: none;
 }

 .contact-btn {
     background-color: transparent;
     color: #3498db;
     border: 1px solid #3498db;
 }

 /* Sayfalama */
 .pagination {
     display: flex;
     justify-content: center;
     margin-top: 40px;
     gap: 10px;
 }

 .page-btn {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 4px;
     background-color: white;
     color: #333;
     text-decoration: none;
     font-weight: 500;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     transition: all 0.3s;
 }

 .page-btn.active {
     background-color: #2c78c3;
     color: white;
 }

 .page-btn:hover:not(.active) {
     background-color: #f5f7fa;
 }

 /* Firma Başlık */
 .company-header {
     background-color: #2c78c3;
     color: white;
     padding: 40px 0;
 }

 .company-header-content {
     display: flex;
     align-items: center;
     gap: 30px;
 }

 .company-logo-large {
     width: 150px;
     height: 150px;
     background-color: white;
     border-radius: 0px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .company-header-info h1 {
     font-size: 36px;
     margin-bottom: 10px;
 }

 .company-header-meta {
     display: flex;
     gap: 20px;
     margin-bottom: 15px;
     flex-wrap: wrap;
 }

 .company-rating-large {
     font-size: 18px;
     color: #ffc107;
 }

 .company-actions {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 /* Ana İçerik */
 .company-detail {
     padding: 40px 0;
 }

 .detail-container {
     display: grid;
     grid-template-columns: 1fr 300px;
     gap: 30px;
 }

 /* Sağda Sticky Submenu */
 .company-sidebar {
     position: sticky;
     top: 100px;
     height: fit-content;
 }

 .sidebar-card {
     background-color: white;
     border-radius: 0px;
     padding: 25px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     margin-bottom: 20px;
 }

 .visitor-counter {
     text-align: center;
     border: 2px solid #3498db;
     border-radius: 0px;
     padding: 20px;
 }

 .counter-number {
     font-size: 32px;
     font-weight: 700;
     color: #2c78c3;
     margin: 10px 0;
 }

 .counter-label {
     color: #666;
     font-size: 14px;
 }

 .sidebar-menu {
     list-style: none;
 }

 .sidebar-menu li {
     margin-bottom: 10px;
 }

 .sidebar-menu a {
     display: block;
     padding: 12px 15px;
     background-color: #f8f9fa;
     border-radius: 4px;
     text-decoration: none;
     color: #333;
     transition: all 0.3s;
     font-weight: 500;
 }

 .sidebar-menu a:hover,
 .sidebar-menu a.active {
     background-color: #2c78c3;
     color: white;
 }

 /* Sol Ana İçerik */
 .company-content {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .content-section {
     background-color: white;
     border-radius: 0px;
     padding: 30px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
 }

 .section-title {
     font-size: 24px;
     margin-bottom: 20px;
     color: #2c3e50;
     position: relative;
     padding-bottom: 10px;
 }

 .section-title:after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 50px;
     height: 3px;
     background: #3498db;
 }

 /* Hakkımızda Bölümü */
 .about-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
     align-items: center;
 }

 .about-image {
     height: 300px;
     background-color: #f8f9fa;
     border-radius: 0px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #666;
     font-size: 18px;
 }

 .about-text {
     line-height: 1.8;
 }

 /* Kampanyalar */
 .campaigns-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 20px;
 }

 .campaign-card {
     border: 1px solid #eee;
     border-radius: 0px;
     padding: 20px;
     transition: transform 0.3s;
 }

 .campaign-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .campaign-title {
     font-weight: 600;
     margin-bottom: 10px;
     color: #2c78c3;
 }

 .campaign-date {
     color: #666;
     font-size: 14px;
     margin-bottom: 10px;
 }

 /* Hizmetler */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 20px;
 }

 .service-card {
     text-align: center;
     padding: 20px;
     border: 1px solid #eee;
     border-radius: 0px;
     transition: all 0.3s;
 }

 .service-card:hover {
     background-color: #f8f9fa;
     transform: translateY(-5px);
 }

 .service-icon {
     font-size: 40px;
     margin-bottom: 15px;
     color: #2c78c3;
 }

 /* Galeri */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 15px;
 }

 .gallery-item {
     height: 150px;
     background-color: #f8f9fa;
     border-radius: 0px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #666;
     cursor: pointer;
     transition: transform 0.3s;
 }

 .gallery-item:hover {
     transform: scale(1.05);
 }

 /* Harita ve İletişim */
 .map-contact-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
 }

 .map-container {
     height: 450px;
     background-color: #f8f9fa;
     border-radius: 0px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #666;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .working-hours {
     background-color: #f8f9fa;
     padding: 20px;
     border-radius: 0px;
 }

 .hours-table {
     width: 100%;
     border-collapse: collapse;
 }

 .hours-table tr {
     border-bottom: 1px solid #eee;
 }

 .hours-table tr:last-child {
     border-bottom: none;
 }

 .hours-table td {
     padding: 8px 0;
 }

 .hours-table td:first-child {
     font-weight: 500;
 }

 .contact-details {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .contact-item i {
     width: 20px;
     color: #2c78c3;
 }

 /* İletişim Formu */
 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 5px;
 }

 .form-label {
     font-weight: 500;
 }

 .form-input,
 .form-textarea {
     padding: 12px;
     border: 1px solid #ddd;
     border-radius: 0px;
     font-size: 16px;
 }

 .form-textarea {
     min-height: 120px;
     resize: vertical;
 }

 /* Contact */


 /* İletişim Başlık */
 .contact-header {
     background-color: #2c78c3;
     color: white;
     padding: 60px 0;
     text-align: center;
 }

 .contact-header h1 {
     font-size: 42px;
     margin-bottom: 15px;
 }

 .contact-header p {
     font-size: 18px;
     max-width: 700px;
     margin: 0 auto;
 }

 /* İletişim İçerik */
 .contact-content {
     padding: 80px 0;
 }

 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
 }

 /* İletişim Bilgileri */
 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .info-card {
     background-color: white;
     border-radius: 8px;
     padding: 30px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s;
 }

 .info-card:hover {
     transform: translateY(-5px);
 }

 .info-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .info-icon {
     width: 60px;
     height: 60px;
     background-color: #e3f2fd;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2c78c3;
     font-size: 24px;
 }

 .info-title {
     font-size: 22px;
     font-weight: 600;
     color: #2c3e50;
 }

 .info-details {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
 }

 .info-item i {
     color: #2c78c3;
     margin-top: 3px;
     width: 20px;
 }

 /* İletişim Formu */
 .contact-form-container {
     background-color: white;
     border-radius: 8px;
     padding: 40px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
 }

 .form-title {
     font-size: 24px;
     margin-bottom: 25px;
     color: #2c3e50;
     position: relative;
     padding-bottom: 10px;
 }

 .form-title:after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 50px;
     height: 3px;
     background: #3498db;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .form-label {
     font-weight: 500;
     color: #555;
 }

 .form-input,
 .form-textarea,
 .form-select {
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 0px;
     font-size: 16px;
     transition: border-color 0.3s;
 }

 .form-input:focus,
 .form-textarea:focus,
 .form-select:focus {
     outline: none;
     border-color: #3498db;
 }

 .form-textarea {
     min-height: 150px;
     resize: vertical;
 }

 .form-select {
     background-color: white;
 }

 .submit-btn {
     background-color: #ff6b00;
     padding: 15px;
     font-size: 16px;
     margin-top: 10px;
 }

 .submit-btn:hover {
     background-color: #e55e00;
 }

 /* Harita */
 .map-section {
     padding: 60px 0;
     background-color: #f1f5f9;
 }

 .map-container {
     height: 550px;
     background-color: #e9ecef;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #666;
     font-size: 18px;
 }

 /* Sık Sorulan Sorular */
 .faq-section {
     padding: 80px 0;
 }

 .faq-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     background-color: white;
     border-radius: 8px;
     margin-bottom: 15px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     overflow: hidden;
 }

 .faq-question {
     padding: 20px 25px;
     font-weight: 600;
     font-size: 18px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background-color 0.3s;
 }

 .faq-question:hover {
     background-color: #f8f9fa;
 }

 .faq-answer {
     padding: 0 25px;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease, padding 0.3s ease;
 }

 .faq-item.active .faq-answer {
     padding: 0 25px 25px;
     max-height: 500px;
 }

 .faq-toggle {
     color: #2c78c3;
     transition: transform 0.3s;
 }

 .faq-item.active .faq-toggle {
     transform: rotate(180deg);
 }

 /* Hemen Başvur */

 /* Başvuru Başlık */
 .apply-header {
     background: linear-gradient(rgba(44, 90, 160, 0.9), rgba(44, 90, 160, 0.9)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
     background-size: cover;
     background-position: center;
     color: white;
     padding: 100px 0;
     text-align: center;
 }

 .apply-header h1 {
     font-size: 42px;
     margin-bottom: 20px;
 }

 .apply-header p {
     font-size: 20px;
     max-width: 700px;
     margin: 0 auto 30px;
 }

 .highlight {
     color: #ffd700;
     font-weight: 700;
 }

 /* Başvuru İçerik */
 .apply-content {
     padding: 80px 0;
 }

 .apply-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: start;
 }

 /* Başvuru Formu */
 .apply-form-container {
     background-color: white;
     border-radius: 8px;
     padding: 40px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .form-title {
     font-size: 24px;
     margin-bottom: 25px;
     color: #2c3e50;
     position: relative;
     padding-bottom: 10px;
 }

 .form-title:after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 50px;
     height: 3px;
     background: #3498db;
 }

 .apply-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .form-label {
     font-weight: 500;
     color: #555;
 }

 .form-label span {
     color: #e74c3c;
 }

 .form-input,
 .form-textarea,
 .form-select {
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 0px;
     font-size: 16px;
     transition: border-color 0.3s;
 }

 .form-input:focus,
 .form-textarea:focus,
 .form-select:focus {
     outline: none;
     border-color: #3498db;
     box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
 }

 .form-textarea {
     min-height: 120px;
     resize: vertical;
 }

 .form-select {
     background-color: white;
 }

 .submit-btn {
     background-color: #ff6b00;
     padding: 15px;
     font-size: 16px;
     margin-top: 10px;
     font-weight: 700;
 }

 .submit-btn:hover {
     background-color: #e55e00;
 }

 /* Avantajlar */
 .benefits-sidebar {
     display: flex;
     flex-direction: column;
     gap: 25px;
 }

 .benefit-card {
     background-color: white;
     border-radius: 8px;
     padding: 25px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s;
 }

 .benefit-card:hover {
     transform: translateY(-5px);
 }

 .benefit-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
 }

 .benefit-icon {
     width: 50px;
     height: 50px;
     background-color: #e3f2fd;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2c78c3;
     font-size: 20px;
 }

 .benefit-title {
     font-size: 20px;
     font-weight: 600;
     color: #2c3e50;
 }

 /* Nasıl Çalışır */
 .how-it-works {
     padding: 80px 0;
     background-color: #f1f5f9;
 }

 .steps-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .step-card {
     background-color: white;
     border-radius: 8px;
     padding: 30px;
     text-align: center;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     position: relative;
 }

 .step-number {
     width: 50px;
     height: 50px;
     background-color: #2c78c3;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     font-weight: 700;
     margin: 0 auto 20px;
 }

 .step-title {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
 }

 /* Sık Sorulan Sorular */
 .faq-section {
     padding: 80px 0;
 }

 .faq-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     background-color: white;
     border-radius: 8px;
     margin-bottom: 15px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     overflow: hidden;
 }

 .faq-question {
     padding: 20px 25px;
     font-weight: 600;
     font-size: 18px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background-color 0.3s;
 }

 .faq-question:hover {
     background-color: #f8f9fa;
 }

 .faq-answer {
     padding: 0 25px;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease, padding 0.3s ease;
 }

 .faq-item.active .faq-answer {
     padding: 0 25px 25px;
     max-height: 500px;
 }

 .faq-toggle {
     color: #2c78c3;
     transition: transform 0.3s;
 }

 .faq-item.active .faq-toggle {
     transform: rotate(180deg);
 }

 /* Login */

 /* Ana İçerik */
 .main-content {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px 0;
     min-height: calc(100vh - 140px);
 }

 .login-wrapper {
     display: flex;
     max-width: 1000px;
     width: 100%;
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     min-height: 600px;
     margin: 0 auto;
     /* Container içinde ortala */
 }

 /* Sol Taraf - Görsel */
 .login-visual {
     flex: 1;
     background: linear-gradient(135deg, #2c78c3 0%, #1e3a8a 100%);
     color: white;
     padding: 50px 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .visual-content {
     position: relative;
     z-index: 2;
     width: 100%;
     /* İçerik genişliği */
 }

 .visual-title {
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
     text-align: left;
     /* Sola hizala */
 }

 .visual-subtitle {
     font-size: 16px;
     opacity: 0.9;
     margin-bottom: 30px;
     line-height: 1.6;
     text-align: left;
     /* Sola hizala */
 }

 .features-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-bottom: 40px;
     width: 100%;
     /* Genişlik tam */
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 15px;
     width: 100%;
     /* Genişlik tam */
 }

 .feature-icon {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .feature-text {
     font-size: 14px;
     font-weight: 500;
     flex: 1;
     /* Kalan alanı kapla */
 }

 .visual-bg {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     opacity: 0.1;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
 }

 /* Sağ Taraf - Form */
 .login-form-section {
     flex: 1;
     padding: 60px 50px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     width: 100%;
     /* Genişlik tam */
 }

 .form-header {
     text-align: center;
     margin-bottom: 40px;
     width: 100%;
     /* Genişlik tam */
 }

 .form-title {
     font-size: 28px;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 10px;
 }

 .form-subtitle {
     color: #666;
     font-size: 16px;
 }

 .login-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
     width: 100%;
     /* Form genişliği tam */
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 8px;
     width: 100%;
     /* Genişlik tam */
 }

 .form-label {
     font-weight: 600;
     color: #2c3e50;
     font-size: 14px;
 }

 .form-input {
     padding: 15px 20px;
     border: 2px solid #e1e5e9;
     border-radius: 0px;
     font-size: 16px;
     transition: all 0.3s;
     background: #f8f9fa;
     width: 100%;
     /* Input genişliği tam */
     box-sizing: border-box;
     /* Padding dahil */
 }

 .form-input:focus {
     outline: none;
     border-color: #2c78c3;
     background: white;
     box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
 }

 .password-container {
     position: relative;
     width: 100%;
     /* Genişlik tam */
 }

 .toggle-password {
     position: absolute;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     color: #666;
     cursor: pointer;
     padding: 5px;
 }

 .form-options {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 10px 0;
     width: 100%;
     /* Genişlik tam */
 }

 .remember-me {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #555;
     cursor: pointer;
 }

 .forgot-password {
     color: #2c78c3;
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
 }

 .forgot-password:hover {
     text-decoration: underline;
 }

 .submit-btn {
     background: linear-gradient(135deg, #2c78c3 0%, #1e3a8a 100%);
     padding: 15px;
     font-size: 16px;
     font-weight: 600;
     margin-top: 10px;
     border: none;
     color: white;
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.3s;
     width: 100%;
     /* Buton genişliği tam */
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
 }

 .divider {
     text-align: center;
     margin: 30px 0;
     position: relative;
     color: #666;
     font-size: 14px;
     width: 100%;
     /* Genişlik tam */
 }

 .divider:before {
     content: '';
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     height: 1px;
     background: #e1e5e9;
 }

 .divider span {
     background: white;
     padding: 0 20px;
     position: relative;
 }

 .social-login {
     display: flex;
     gap: 15px;
     margin-bottom: 30px;
     width: 100%;
     /* Genişlik tam */
 }

 .social-btn {
     flex: 1;
     padding: 12px;
     border: 2px solid #e1e5e9;
     border-radius: 10px;
     background: white;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     cursor: pointer;
     transition: all 0.3s;
     font-weight: 500;
     font-size: 14px;
 }

 .social-btn:hover {
     border-color: #2c78c3;
     transform: translateY(-2px);
 }

 .social-btn.google {
     color: #db4437;
 }

 .social-btn.facebook {
     color: #4267B2;
 }

 .register-link {
     text-align: center;
     color: #666;
     font-size: 14px;
     width: 100%;
     /* Genişlik tam */
 }

 .register-link a {
     color: #2c78c3;
     text-decoration: none;
     font-weight: 600;
 }

 .register-link a:hover {
     text-decoration: underline;
 }

 /* Premium Banner */
 .premium-banner {
     background: rgba(255, 255, 255, 0.1);
     padding: 20px;
     border-radius: 10px;
     border-left: 4px solid #ff6b00;
     width: 100%;
     /* Genişlik tam */
     box-sizing: border-box;
 }

 .premium-banner h3 {
     margin-bottom: 10px;
     font-size: 16px;
     color: white;
 }

 .premium-banner p {
     font-size: 14px;
     opacity: 0.9;
     margin: 0;
     color: white;
 }

 /* Footer */
 footer {
     background-color: #2872be;
     color: white;
     padding: 60px 0 20px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-column h3 {
     margin-bottom: 20px;
     font-size: 18px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-column h3:after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 40px;
     height: 2px;
     background: #3498db;
 }

 .footer-column ul {
     list-style: none;
 }

 .footer-column ul li {
     margin-bottom: 12px;
 }

 .footer-column ul li a {
     color: #ddd;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-column ul li a:hover {
     color: white;
     padding-left: 5px;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     background-color: #2c78c3;
     border-radius: 50%;
     color: white;
     text-decoration: none;
     transition: background-color 0.3s;
 }

 .social-links a:hover {
     background-color: #3498db;
 }

 .copyright {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid #498ad9;
     color: #fff;
     font-size: 14px;
 }

 /* Animasyonlar */
 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive */
 @media (max-width: 992px) {
     .header-top {
         flex-direction: column;
         gap: 15px;
     }

     nav ul {
         flex-wrap: wrap;
         justify-content: center;
     }

     .hero h1 {
         font-size: 36px;
     }

     .results-container {
         grid-template-columns: 1fr;
     }

     .filters-sidebar {
         position: static;
     }

     .detail-container {
         grid-template-columns: 1fr;
     }

     .company-sidebar {
         position: static;
         order: -1;
     }

     .about-section,
     .map-contact-section {
         grid-template-columns: 1fr;
     }

     .contact-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .apply-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .steps-container {
         grid-template-columns: 1fr;
     }

     .login-wrapper {
         flex-direction: column;
         max-width: 500px;
         min-height: auto;
     }

     .login-visual {
         display: none;
     }

     .login-form-section {
         padding: 40px 30px;
     }

     .main-content {
         min-height: calc(100vh - 120px);
         padding: 20px 0;
     }


 }

 @media (max-width: 768px) {
     .search-form {
         flex-direction: column;
     }

     .hero {
         padding: 80px 0;
     }

     .section-title {
         font-size: 28px;
     }

     .categories-grid {
         grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
     }

     .result-item {
         flex-direction: column;
     }

     .result-logo {
         align-self: center;
     }

     .results-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 15px;
     }

     .company-header-content {
         flex-direction: column;
         text-align: center;
     }

     .company-actions {
         justify-content: center;
     }

     .services-grid,
     .gallery-grid {
         grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .contact-header h1 {
         font-size: 36px;
     }

     .contact-header p {
         font-size: 16px;
     }

     .apply-header h1 {
         font-size: 36px;
     }

     .apply-header p {
         font-size: 18px;
     }

     .social-login {
         flex-direction: column;
     }

     .form-options {
         flex-direction: column;
         gap: 15px;
         align-items: flex-start;
     }
 }

 @media (max-width: 576px) {
     .companies-grid {
         grid-template-columns: 1fr;
     }

     .hero h1 {
         font-size: 28px;
     }

     .hero p {
         font-size: 16px;
     }

     .features-grid {
         grid-template-columns: 1fr;
     }

     .result-meta {
         flex-direction: column;
         gap: 10px;
     }

     .result-actions {
         flex-direction: column;
     }

     .campaigns-grid {
         grid-template-columns: 1fr;
     }

     .contact-form-container {
         padding: 25px;
     }

     .info-card {
         padding: 20px;
     }

     .section-title {
         font-size: 28px;
     }

     .apply-form-container {
         padding: 25px;
     }

     .benefit-card {
         padding: 20px;
     }

     .login-form-section {
         padding: 30px 20px;
     }

     .form-title {
         font-size: 24px;
     }
 }
 
 
    .verification-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 20px;
        }

        .verification-card {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            max-width: 500px;
            width: 100%;
            text-align: center;
        }

        .verification-icon {
            font-size: 80px;
            color: #2c78c3;
            margin-bottom: 30px;
            animation: bounce 2s infinite;
        }

        .verification-title {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .verification-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .email-address {
            font-size: 18px;
            font-weight: 600;
            color: #2c78c3;
            margin-bottom: 30px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
            display: inline-block;
        }

        .code-inputs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 40px 0;
        }

        .code-input {
            width: 60px;
            height: 70px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            background: #f8f9fa;
            transition: all 0.3s ease;
        }

        .code-input:focus {
            outline: none;
            border-color: #2c78c3;
            background: white;
            box-shadow: 0 0 0 3px rgba(44, 120, 195, 0.1);
            transform: translateY(-2px);
        }

        .code-input.filled {
            border-color: #48bb78;
            background: #f0fff4;
        }

        .countdown-section {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
        }

        .countdown-text {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
        }

        .countdown-timer {
            font-size: 24px;
            font-weight: 700;
            color: #2c78c3;
        }

        .countdown-expired {
            color: #e74c3c;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2c78c3, #3498db);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary {
            background: white;
            color: #2c78c3;
            padding: 15px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #2c78c3;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(44, 120, 195, 0.3);
        }

        .btn-secondary:hover {
            background: #2c78c3;
            color: white;
            transform: translateY(-2px);
        }

        .btn-primary:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .resend-info {
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }

        .resend-link {
            color: #2c78c3;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        .resend-link:hover {
            text-decoration: underline;
        }

        .resend-link:disabled {
            color: #999;
            cursor: not-allowed;
            text-decoration: none;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        @media (max-width: 768px) {
            .verification-card {
                padding: 40px 25px;
            }

            .verification-title {
                font-size: 28px;
            }

            .verification-icon {
                font-size: 60px;
            }

            .code-inputs {
                gap: 10px;
            }

            .code-input {
                width: 50px;
                height: 60px;
                font-size: 28px;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .code-inputs {
                gap: 8px;
            }

            .code-input {
                width: 45px;
                height: 55px;
                font-size: 24px;
            }
        }