:root {
--primary-blue: #172f51;
--secondary-blue: #3b82f6;
--accent-green: #10b981;
--whatsapp-green: #25D366;
--call-blue: #3b82f6;
--verified-color: #059669;
--neutral-gray: #6b7280;
--light-gray: #f9fafb;
--dark-gray: #111827;
--shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--border-radius: 0.75rem;
}
body {
font-family: 'Montserrat', sans-serif;
line-height: 1.6;
color: var(--dark-gray);
background-color: var(--light-gray);
margin: 0;
overflow-x: hidden;
}
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: var(--shadow-sm);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
}
.card-title {
  text-transform: capitalize;
  font-weight:700;
}
.navbar-brand img {
height: 45px;
transition: transform 0.3s ease;
}
.navbar-brand:hover img {
transform: scale(1.05);
}
.nav-link {
font-weight: 500;
color: var(--neutral-gray) !important;
transition: all 0.3s ease;
margin: 0 0.5rem;
}
.nav-link:hover {
color: var(--primary-blue) !important;
}
.btn-auth {
font-weight: 500;
border-radius: var(--border-radius);
padding: 0.5rem 1.5rem;
transition: all 0.3s ease;
}
.btn-login {
background: var(--primary-blue);
color: white;
border: 1px solid var(--primary-blue);
}
.btn-login:hover {
background: var(--secondary-blue);
border-color: var(--secondary-blue);
transform: translateY(-1px);
}
.btn-register {
background: transparent;
color: var(--primary-blue);
border: 1px solid var(--primary-blue);
}
.btn-register:hover {
background: var(--primary-blue);
color: white;
transform: translateY(-1px);
}
.hero {
height: auto;
width: 100%;
background-image: url("/images/bg.jpg");
background-position: center;
background-repeat: no-repeat;
color: white;
padding: 120px 0 80px;
position: relative;
overflow: hidden;
min-height: 400px;
display: flex;
align-items: center;
}
.hero h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero .lead {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.95;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.search-box {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 10;
}
.search-input {
width: 100%;
padding: 0.9rem 2.5rem 0.9rem 1.2rem;
font-size: 1rem;
border: none;
border-radius: var(--border-radius);
box-shadow: var(--shadow-md);
font-weight: 400;
color: var(--dark-gray);
background: white;
transition: all 0.3s ease;
}
.search-input:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
.search-input::placeholder {
color: #9ca3af;
}
.search-icon {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
color: var(--neutral-gray);
font-size: 1.1rem;
pointer-events: none;
}
.search-submit {
position: absolute;
right: 0;
top: 0;
bottom: 0;
background: var(--primary-blue);
border: none;
border-radius: 0 var(--border-radius) var(--border-radius) 0;
padding: 0 1.2rem;
color: white;
font-size: 1rem;
transition: background 0.3s ease;
}
.search-submit:hover {
background: var(--secondary-blue);
}
.search-suggestions {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow-md);
max-height: 300px;
overflow-y: auto;
z-index: 1000;
display: none;
margin-top: 0.5rem;
}
.search-suggestions .dropdown-item {
padding: 0.75rem 1rem;
font-size: 0.95rem;
color: var(--dark-gray);
cursor: pointer;
transition: background 0.2s ease;
}
.search-suggestions .dropdown-item:hover {
background: var(--light-gray);
}
section {
padding: 40px 0;
}
.section-title {
font-size: 2rem;
font-weight: 900;
text-align: center;
margin-bottom: 1rem;
color: var(--dark-gray);
}
.section-title::after {
content: '';
display: block;
width: 300px;
height: 4px;
background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
margin: 1rem auto;
border-radius: 2px;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--neutral-gray);
text-align: center;
max-width: 600px;
margin: 0 auto 2.5rem;
}
.firm-card {
border: none;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: all 0.4s ease;
background: white;
height: 100%;
}
.firm-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.firm-card img {
height: 200px;
object-fit: cover;
width: 100%;
transition: transform 0.4s ease;
}
.firm-card-body {
padding: 1.5rem;
}
.firm-title {
font-size: 1.2rem;
margin-bottom: 0.5rem;
font-weight: 900;
text-transform: capitalize;
}
.firm-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0.75rem 0;
font-size: 0.85rem;
}
.firm-rating {
color: #fbbf24;
font-weight: 600;
}
.firm-verified {
color: var(--verified-color);
font-size: 0.8rem;
display: flex;
align-items: center;
gap: 0.25rem;
}
.action-buttons {
display: flex;
gap: 0.5rem;
margin-top: 1rem;
flex-wrap: wrap;
}
.action-btn {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 0.5rem;
font-size: 0.85rem;
font-weight: 600;
border: none;
border-radius: 6px;
color: white;
text-decoration: none;
transition: all 0.2s ease;
gap: 0.25rem;
}
.btn-whatsapp {
background: var(--whatsapp-green);
}
.btn-whatsapp:hover {
background: #128c7e;
transform: translateY(-1px);
}
.btn-call {
background: var(--call-blue);
}
.btn-call:hover {
background: #2563eb;
transform: translateY(-1px);
}
.btn-offer {
background: var(--primary-blue);
}
.btn-offer:hover {
background: var(--secondary-blue);
transform: translateY(-1px);
}
.blog-card {
border: none;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: all 0.4s ease;
background: white;
height: 100%;
}
.blog-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-5px);
}
.blog-card img {
height: 180px;
object-fit: cover;
width: 100%;
}
.blog-card-body {
padding: 1.5rem;
}
.blog-stats {
display: flex;
gap: 1rem;
margin-top: 0.75rem;
font-size: 0.85rem;
color: var(--neutral-gray);
}
.blog-meta {
display: flex;
justify-content: space-between;
font-size: 0.85rem;
color: var(--neutral-gray);
margin-bottom: 0.75rem;
}
.comments-slider {
max-width: 900px;
margin: 0 auto;
position: relative;
overflow: hidden;
}
.comments-track {
display: flex;
transition: transform 0.5s ease-in-out;
width: 100%;
}
.comment-card {
min-width: 100%;
padding: 2rem;
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow-sm);
text-align: center;
}
.comment-rating {
color: #fbbf24;
font-size: 1.2rem;
margin: 0.5rem 0;
}
.comment-author {
font-weight: 600;
margin-bottom: 0.25rem;
}
.comment-date {
font-size: 0.85rem;
color: var(--neutral-gray);
margin-bottom: 1rem;
}
.slider-nav {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 1.5rem;
}
.slider-btn {
background: var(--primary-blue);
color: white;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background 0.3s;
}
.slider-btn:hover {
background: var(--secondary-blue);
}
.slider-btn:disabled {
background: var(--neutral-gray);
cursor: not-allowed;
}
footer {
background: linear-gradient(135deg, var(--dark-gray) 0%, #374151 100%);
color: white;
padding: 60px 0 20px;
}
footer h5 {
font-weight: 600;
margin-bottom: 1.5rem;
color: white;
}
footer a {
color: rgba(255,255,255,0.8);
transition: color 0.3s;
text-decoration: none;
}
footer a:hover {
color: white;
}
.social-icons a {
font-size: 1.4rem;
margin-right: 1.2rem;
color: rgba(255,255,255,0.8);
transition: all 0.3s ease;
display: inline-block;
}
.social-icons a:hover {
color: var(--secondary-blue);
transform: translateY(-3px);
}
/* Karanlık Mod */
@media (prefers-color-scheme: dark) {
:root {
--light-gray: #1f2937;
--dark-gray: #f9fafb;
--neutral-gray: #d1d5db;
}
body {
background-color: var(--light-gray);
color: var(--dark-gray);
}
.hero {
background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}
.navbar {
background: rgba(31, 41, 55, 0.95);
}
.firm-card, .blog-card, .comment-card {
background: #2d3748;
color: var(--dark-gray);
}
.section-subtitle {
color: var(--neutral-gray);
}
.search-input {
background: #2d3748;
color: var(--dark-gray);
}

}
/* Responsive Ayarları */
@media (max-width: 992px) {
.hero {
padding: 100px 0 60px;
}
.hero h1 {
font-size: clamp(2rem, 4vw, 3rem);
}
.search-box {
margin: 0 1rem;
}
section {
padding: 60px 0;
}
.section-title {
font-size: 2rem;
}
.action-buttons {
flex-direction: column;
}
.action-btn {
width: 100%;
font-size: 0.9rem;
}
}
@media (max-width: 768px) {
.hero {
padding: 80px 0 50px;
}
.search-input {
font-size: 0.95rem;
padding: 0.8rem 2rem 0.8rem 1rem;
}
.search-submit {
padding: 0 1rem;
}
.navbar-nav.ms-auto {
margin-top: 1rem;
}
.navbar-nav .btn-auth {
margin: 0.5rem 0;
width: 100%;
text-align: center;
}
.firm-card img {
height: 160px;
}
.blog-card img {
height: 140px;
}
.section-title {
font-size: 1.8rem;
}
.section-subtitle {
font-size: 1rem;
}
}
@media (max-width: 576px) {
.hero {
padding: 60px 0 40px;
}
.search-box {
margin: 0 0.5rem;
}
.search-input {
font-size: 0.9rem;
}
.firm-card, .blog-card {
margin-bottom: 1rem;
}
.action-btn {
font-size: 0.8rem;
padding: 0.4rem;
}
}

.text-muted {
font-size: 14px;
}
.text-adres {
font-size: 12px;
}