/* Variables */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #0d4b26;
    --accent-color: #1e3d59;
    --gold: #c5a47e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* General Styles */
body {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    opacity: 0.9;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-dark {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-dark:hover {
    background-color: var(--gold);
    color: var(--text-dark);
}

/* Practice Areas */
.practice-areas {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.practice-area-card {
    background-color: var(--text-light);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.practice-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.practice-area-card i {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background-color: var(--text-light);
}

.team-member-card {
    background-color: var(--text-light);
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-card .card-body {
    padding: 1.5rem;
}

.team-member-card h3 {
    margin-bottom: 0.5rem;
}

.team-member-card .position {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.team-member-card .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-member-card .social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-member-card .social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.team-member-card .social-links a.linkedin:hover {
    background: #0077b5;
}

.team-member-card .social-links a.twitter:hover {
    background: #1da1f2;
}

.team-member-card .social-links a.instagram:hover {
    background: #e4405f;
}

/* Contact Section */
.contact-preview {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 5px;
}

.contact-info i {
    color: var(--gold);
}

/* İletişim Sayfası Stilleri */
.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info-box .info-item {
    position: relative;
    padding-left: 70px;
}

.contact-info-box .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-box .icon-box i {
    font-size: 20px;
    color: #fff;
}

.contact-info-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-info-box p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.form-group label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    height: 50px;
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 40%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .contact-info-box {
        margin-bottom: 30px;
    }
    
    .map-container {
        padding-top: 60%;
    }
}

@media (max-width: 767px) {
    .contact-form-box,
    .contact-info-box {
        padding: 25px;
    }
    
    .map-container {
        padding-top: 80%;
    }
}

/* reCAPTCHA Styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

@media (max-width: 320px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;  /* R:26 G:26 B:26 */
    color: var(--text-light);
    padding: 4rem 0 0;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold);
}

.social-links a {
    color: var(--text-light);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

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

.footer-links li {
    display: inline-block;
    margin-left: 20px;
}

.footer-links li:first-child {
    margin-left: 0;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: none;
}

.developed-by {
    color: var(--gold);
    font-weight: 500;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer .text-md-end {
    text-align: right !important;
}

@media (max-width: 767px) {
    .footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer p {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links li {
        margin: 0 10px;
    }
}

/* Footer fixes */
.footer .col-lg-3 {
    text-align: left;
}

@media (max-width: 991px) {
    .footer .col-lg-3 {
        text-align: center;
    }
    
    .footer .social-links {
        justify-content: center;
        display: flex;
    }
}

/* Footer Contact Info Styles */
.footer .contact-info {
    background-color: #1a1a1a;  /* R:26 G:26 B:26 */
    color: var(--text-light);
    padding: 1rem;
}

.footer .contact-info i {
    color: var(--gold);
}

.footer .contact-info h3 {
    color: var(--text-light);
}

.footer .contact-info p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info {
    background: transparent;
    color: var(--text-light);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-contact-info i {
    color: var(--gold);
    width: 20px;
}

.footer .col-lg-3 .contact-info {
    background-color: transparent;
    padding: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .practice-area-card,
    .team-member-card {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Gizlilik ve Kullanım Koşulları Sayfaları */
.page-title-area {
    background: linear-gradient(45deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.page-title-area .shape img {
    max-width: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.page-title-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-title-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-title-content ul li {
    display: inline-block;
    color: #fff;
    margin: 0 10px;
    font-size: 1.1rem;
}

.page-title-content ul li a {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s;
}

.page-title-content ul li a:hover {
    opacity: 1;
    text-decoration: none;
}

.privacy-content,
.terms-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 40px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    background: linear-gradient(45deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.single-privacy h3,
.single-terms h3 {
    color: var(--primary);
    position: relative;
    padding-left: 20px;
}

.single-privacy h3::before,
.single-terms h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .privacy-content,
    .terms-content {
        padding: 25px;
        margin-top: -20px;
    }
    
    .page-title-area {
        padding: 40px 0;
    }
    
    .page-title-content h2 {
        font-size: 2rem;
    }
}

/* Gizlilik Politikası ve Kullanım Koşulları Sayfaları */
.page-title {
    position: relative;
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.page-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 89%);
}

.page-title .content-box {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.bread-crumb {
    font-size: 18px;
}

.bread-crumb a {
    color: var(--gold);
    text-decoration: none;
}

.section-padding {
    padding: 100px 0;
}

.section-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.single-block h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.single-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.single-block ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.single-block ul li {
    color: #666;
    margin-bottom: 10px;
    position: relative;
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 36px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-content {
        padding: 25px;
    }
}

/* Blog Kartları */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-image .date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--gold);
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-meta span {
    color: var(--text-muted);
    margin-right: 15px;
    font-size: 14px;
}

.blog-meta i {
    color: var(--gold);
    margin-right: 5px;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Sayfa Banner Stili */
.page-banner {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('/refakat/public/images/pattern.png') repeat;
    opacity: 0.1;
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner-content h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-breadcrumb li {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    margin: 0 20px;
}

.page-breadcrumb li:not(:last-child)::after {
    content: '>';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.page-breadcrumb li a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: #fff;
}

.shape1, .shape2 {
    position: absolute;
    z-index: 0;
}

.shape1 {
    left: 5%;
    top: 20%;
    animation: moveLeft 5s infinite alternate;
}

.shape2 {
    right: 5%;
    bottom: 20%;
    animation: moveRight 5s infinite alternate;
}

.shape1 img, .shape2 img {
    max-width: 100px;
    opacity: 0.2;
}

@keyframes moveLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-20px); }
}

@keyframes moveRight {
    from { transform: translateX(0); }
    to { transform: translateX(20px); }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 100px 0 60px;
    }
    
    .page-banner-content h2 {
        font-size: 32px;
    }
    
    .shape1 img, .shape2 img {
        max-width: 60px;
    }
}

/* About Page Styles */
.vision-mission-card {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.vision-mission-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.vision-mission-card .icon-box i {
    font-size: 24px;
    color: #fff;
}
.vision-mission-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.vision-mission-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card .icon-box i {
    font-size: 24px;
    color: #fff;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-size: 32px;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.cta-box {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 50px;
    border-radius: 10px;
    color: #fff;
    margin-top: 50px;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-box .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    padding: 12px 30px;
    font-size: 18px;
}

.cta-box .btn-primary:hover {
    background: #fff;
    color: var(--gold);
}

@media (max-width: 768px) {
    .vision-mission-card,
    .value-card {
        margin-bottom: 20px;
    }
    
    .cta-box {
        padding: 30px;
    }
}

/* Hakkımızda Sayfası Ek Stilleri */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 24px;
    color: var(--gold);
}

.feature-item:hover i {
    color: #fff;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(197, 164, 126, 0.2), rgba(26, 26, 26, 0.2));
    pointer-events: none;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

/* Hizmetler Sayfası Stilleri */
.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-box .icon-box {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-box .icon-box i {
    font-size: 35px;
    color: #fff;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-box .read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-box .read-more:hover {
    color: var(--primary-color);
}

.service-box .read-more i {
    transition: transform 0.3s ease;
}

.service-box .read-more:hover i {
    transform: translateX(5px);
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-box .icon-box {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-box .icon-box i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-box p {
    color: var(--text-muted);
    margin-bottom: 0;
}