/* ==========================================
   TEMEL STILLER
========================================== */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c59d5f;
    --white-color: #ffffff;
    --dark-color: #0e0e0e;
    --gray-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-color);
    line-height: 1.6;
    background-color: var(--white-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-4 {
    width: 33.333333%;
}

.col-md-6 {
    width: 50%;
}

.mt-4 {
    margin-top: 25px;
}

.mt-5 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 25px;
}

.mb-5 {
    margin-bottom: 40px;
}

.py-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.me-3 {
    margin-right: 15px;
}

.position-relative {
    position: relative;
}

.align-items-center {
    align-items: center;
}

/* ==========================================
   BUTONLAR
========================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border: none;
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   TOP BAR
========================================== */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
}

.info-item {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.info-item i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--secondary-color);
}

/* ==========================================
   HEADER
========================================== */
.header {
    background-color: var(--dark-color);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    display: block;
}

.logo img {
    height: 60px;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 30px;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    display: block;
    font-family: 'Oswald', sans-serif;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 35px 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-cta .btn-primary {
    padding: 12px 25px;
}

/* Responsive Menu */
@media (max-width: 991px) {
    .top-bar-info .info-item:nth-child(2) {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--dark-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 0;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    
    .navbar.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        padding: 15px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .header-inner {
        height: 80px;
    }
    
    .logo img {
        height: 50px;
    }
}

/* ==========================================
   ANA SLIDER
========================================== */
.main-slider {
    height: 100vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white-color);
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 0;
    padding-top: 100px;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.main-slider .container {
    position: relative;
    z-index: 2;
}

.slider-content {
    max-width: 700px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.slider-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white-color);
}

.slider-content p {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.slider-buttons {
    display: flex;
    flex-wrap: wrap;
}

/* ==========================================
   ÜSTÜNLÜKLERİMİZ
========================================== */
.features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
}

/* ==========================================
   SECTION HEADER
========================================== */
.section-header {
    margin-bottom: 50px;
}

.section-header .subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ==========================================
   HAKKIMIZDA
========================================== */
.about {
    padding: 100px 0;
    background-color: var(--white-color);
}

.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    display: block;
    border: 5px solid var(--secondary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
}

.about-quality {
    margin-top: 30px;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.quality-icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.quality-text h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.quality-text p {
    margin-bottom: 0;
}

/* ==========================================
   HİZMETLER
========================================== */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: var(--white-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover .service-overlay {
    opacity: 1;
}

.service-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-info p {
    margin-bottom: 15px;
    color: #666;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ==========================================
   FİYAT LİSTESİ
========================================== */
.price-list {
    padding: 100px 0;
    background-color: var(--white-color);
}

.price-box {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.price-box h3 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    color: var(--primary-color);
}

.price-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-items li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.price-items li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
}

.service-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -5px;
}

.service-price {
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

/* ==========================================
   EKİP
========================================== */
.team {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.barber-card {
    background-color: var(--white-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.barber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.barber-img {
    position: relative;
    overflow: hidden;
}

.barber-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.barber-card:hover .barber-img img {
    transform: scale(1.1);
}

.barber-info {
    padding: 25px;
    text-align: center;
}

.barber-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.barber-info span {
    display: block;
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.barber-social {
    display: flex;
    justify-content: center;
}

.barber-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.barber-social a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* ==========================================
   RANDEVU
========================================== */
.appointment {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    color: var(--white-color);
}

.appointment .section-header h2 {
    color: var(--white-color);
}

.appointment p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h5 {
    color: var(--white-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-item p {
    margin-bottom: 5px;
}

.appointment-form {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 5px;
}

.appointment-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--light-gray);
    border: 1px solid transparent;
    border-radius: 0;
    color: var(--gray-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-row {
    display: flex;
    margin: 0 -10px;
}

.form-row .form-group {
    flex: 1;
    padding: 0 10px;
}

/* ==========================================
   MÜŞTERİ YORUMLARI
========================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.testimonial-slider {
    padding: 0 50px;
}

.testimonial-item {
    padding: 15px;
}

.testimonial-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: var(--secondary-color);
}

.testimonial-content p {
    font-style: italic;
    margin: 0 0 20px;
    padding-top: 10px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--secondary-color);
}

/* Slick Slider Dots */
.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

/* ==========================================
   FOOTER
========================================== */
footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--white-color);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE STYLES
========================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .col-lg-3, .col-lg-4, .col-lg-6 {
        width: 100%;
    }

    .menu-btn {
        display: block;
    }

    .main-menu {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--dark-color);
        padding: 80px 0;
        transition: all 0.4s ease;
        z-index: 1001;
    }

    .main-menu.active {
        left: 0;
    }

    .main-menu ul {
        flex-direction: column;
    }

    .main-menu ul li {
        margin-left: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .slider-content h1 {
        font-size: 44px;
    }

    .about-image {
        margin-bottom: 50px;
    }

    .service-box {
        margin-bottom: 30px;
    }

    .barber-card {
        margin-bottom: 30px;
    }

    .appointment-form {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    .col-md-6 {
        width: 100%;
    }

    .slider-content h1 {
        font-size: 36px;
    }

    .slider-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }

    .form-row {
        flex-direction: column;
    }

    .testimonial-slider {
        padding: 0 20px;
    }

    .testimonial-content {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }

    .slider-content h1 {
        font-size: 28px;
    }

    .price-box {
        padding: 30px 20px;
    }

    .appointment-form {
        padding: 30px 20px;
    }
}

/* Sayfa Başlığı Stilleri */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/header-bg.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffc107;
}

/* Modern Sayfa Başlığı Stilleri */
.page-title-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    overflow: hidden;
}

.page-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.page-title-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.page-title-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
}

.page-title-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .page-title-section {
        height: 300px;
    }
    
    .page-title-content h1 {
        font-size: 36px;
    }
    
    .page-title-content p {
        font-size: 16px;
    }
}

/* İletişim Sayfası Stilleri */
.contact-info-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info-card .icon-box {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon-box i {
    font-size: 32px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 20px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
}

.section-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.social-section {
    background: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

@media (max-width: 991px) {
    .contact-info-card,
    .contact-form-wrapper,
    .map-wrapper {
        margin-bottom: 30px;
    }
} 