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

        :root {
            --primary-color: #B8956A;
            --primary-dark: #9A7A52;
            --primary-light: #C9A777;
            --text-dark: #2C2C2C;
            --text-light: #666;
            --text-sun: #e7e7e7;
            --bg-light: #FAF8F5;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: none;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: var(--primary-dark);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            margin-bottom: 0px !important;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-sun);
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .appointment-btn {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
        }

        .appointment-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
        }

        /* Slider Section */
        .slider-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(184, 149, 106, 0.1) 80%);
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            width: 90%;
            max-width: 900px;
        }

        .slide-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 72px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 2px;
            animation: fadeInUp 2s ease-out;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }

        .slide-content p {
            font-size: 22px;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 30px;
            animation: fadeInUp 2s ease-out 0.4s;
            animation-fill-mode: both;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
        }

        .slide-content .cta-btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 16px 50px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            animation: fadeInUp 2s ease-out 0.7s;
            animation-fill-mode: both;
            box-shadow: 0 6px 25px rgba(184, 149, 106, 0.4);
        }

        .slide-content .cta-btn:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }














        /* About Section */
        .about-section {
            position: relative;
            padding: 120px 40px;
            background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(184, 149, 106, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 167, 119, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .about-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-color);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .about-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .about-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .about-description {
            font-size: 18px;
            color: var(--text-light);
            max-width: 800px;
            margin: 30px auto 0;
            line-height: 1.8;
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            margin-top: 60px;
        }

        .about-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: var(--text-dark);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .about-text p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .about-text p strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .feature-item {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-color);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(184, 149, 106, 0.15);
        }

        .feature-item:hover::before {
            transform: scaleY(1);
        }

        .feature-item h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .feature-item p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin: 0;
        }

        /* Services Keywords Section */
        .services-keywords {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .services-keywords::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
            border-radius: 15px 15px 0 0;
        }

        .services-keywords h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: var(--text-dark);
            margin-bottom: 25px;
            text-align: center;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .service-tag {
            background: var(--bg-light);
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            color: var(--text-dark);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .service-tag:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-dark);
            transform: scale(1.05);
        }

        /* Decorative Pattern */
        .pattern-decoration {
            position: absolute;
            width: 150px;
            height: 150px;
            opacity: 0.04;
        }

        .pattern-1 {
            top: 100px;
            left: 50px;
            background: repeating-linear-gradient(45deg,
                    var(--primary-color),
                    var(--primary-color) 2px,
                    transparent 2px,
                    transparent 10px);
        }

        .pattern-2 {
            bottom: 150px;
            right: 80px;
            background: repeating-linear-gradient(-45deg,
                    var(--primary-light),
                    var(--primary-light) 2px,
                    transparent 2px,
                    transparent 10px);
        }

        @media (max-width: 968px) {
            .about-section {
                padding: 80px 20px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .services-list {
                grid-template-columns: 1fr;
            }

            .about-title {
                font-size: 36px;
            }
        }

        /* Footer Section */
        .footer {
            background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
            color: #ffffff;
            padding: 80px 40px 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-light), transparent);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand {
            max-width: 400px;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: block;
        }

        .footer-tagline {
            font-size: 16px;
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-cta-btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 14px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
        }

        .footer-cta-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 149, 106, 0.5);
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            color: #cccccc;
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-contact-item svg {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            flex-shrink: 0;
            stroke: var(--primary-color);
            margin-top: 2px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: #999999;
            font-size: 14px;
            margin: 0;
        }

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

        .footer-bottom p a:hover {
            color: var(--primary-light);
        }

        @media (max-width: 968px) {
            .footer {
                padding: 60px 20px 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-brand {
                max-width: 100%;
            }
        }

        :root {
            --primary-color: #b8956a;
            --primary-dark: #8b6f47;
            --primary-light: #d4b996;
            --bg-light: #fffaf5;
            --text-dark: #2d3748;
            --text-light: #718096;
        }









        /* Modal Base Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }

        .modal.show {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background-color: var(--bg-light);
            border-radius: 20px;
            max-width: 970px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(184, 149, 106, 0.2);
            position: relative;
        }

        /* Modal Header */
        .modal-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
            padding: 20px 40px;
            border-radius: 20px 20px 0 0;
            text-align: center;
            position: relative;
        }

        .modal-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: white;
            margin: 0;
            font-weight: 700;
        }

        .close {
            position: absolute;
            right: 25px;
            top: 15px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Modal Body */
        .modal-body {
            padding: 30px 40px;
            max-height: calc(90vh - 180px);
            overflow-y: auto;
        }

        /* Steps */
        .step {
            display: none;
        }

        .step.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .step-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .service-category {
            grid-column: 1 / 0;
            background: white;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid var(--bg-light);
            transition: all 0.3s ease;
        }

        .service-category:hover {
            border-color: var(--primary-light);
            box-shadow: 0 6px 15px rgba(184, 149, 106, 0.1);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }

        .category-icon {
            width: 24px;
            height: 24px;
            color: var(--primary-color);
        }

        .category-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin: 0;
        }

        .service-item {
            background: white;
            border: 2px solid var(--bg-light);
            border-radius: 15px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            border-color: var(--primary-light);
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(184, 149, 106, 0.1);
        }

        .service-item.selected {
            border-color: var(--primary-color);
            background: var(--bg-light);
        }

        .service-info {
            margin-bottom: 10px;
        }

        .service-name {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .service-description {
            font-size: 0.85rem;
            color: var(--text-light);
            font-style: italic;
        }

        .service-price {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-color);
            text-align: right;
        }

        .total-price {
            text-align: right;
            font-weight: bold;
            margin-top: 20px;
            font-size: 1.2rem;
            color: var(--primary-color);
            padding: 10px;
            background: white;
            border-radius: 10px;
        }

        /* Calendar */
        .calendar-container {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(184, 149, 106, 0.05);
            margin-bottom: 20px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .calendar-header button {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }

        .calendar-header button:hover {
            color: var(--primary-dark);
        }

        #currentMonth {
            font-weight: 600;
            color: var(--primary-color);
        }

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }

        .calendar-day {
            text-align: center;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .calendar-day.available {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        .calendar-day.available:hover {
            background: var(--primary-light);
            color: white;
        }

        .calendar-day.selected {
            background: var(--primary-color);
            color: white;
        }

        .calendar-day.disabled {
            color: var(--text-light);
            cursor: not-allowed;
        }

        .calendar-day.today {
            border: 2px solid var(--primary-color);
        }

        .calendar-day.empty {
            visibility: hidden;
        }

        /* Time Slots */
        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 12px;
            margin-top: 20px;
        }

        .time-slot {
            padding: 12px;
            background: white;
            border: 2px solid var(--bg-light);
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .time-slot:hover {
            border-color: var(--primary-color);
            background: var(--bg-light);
        }

        .time-slot.selected {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-dark);
        }

        .time-slot-placeholder {
            grid-column: 1 / -1;
            text-align: center;
            color: var(--text-light);
            padding: 20px;
            background: var(--bg-light);
            border-radius: 10px;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--bg-light);
            border-radius: 10px;
            background: white;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
        }

        .form-control.is-invalid {
            border-color: #e74c3c;
        }

        .invalid-feedback {
            color: #e74c3c;
            font-size: 0.875rem;
            margin-top: 5px;
            display: none;
        }

        .form-control.is-invalid~.invalid-feedback {
            display: block;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .form-group input[type="checkbox"] {
            margin-right: 10px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--primary-color);
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 40px 0;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .success-message h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .close-modal-btn {
            padding: 12px 30px;
            border-radius: 10px;
            background: var(--primary-color);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal-btn:hover {
            background: var(--primary-dark);
        }

        /* Modal Footer */
        .modal-footer {
            padding: 20px 40px;
            background: white;
            border-top: 1px solid var(--bg-light);
            display: flex;
            justify-content: flex-end;
        }

        .navigation-buttons {
            display: flex;
            gap: 12px;
        }

        .nav-btn {
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .back-btn {
            background: var(--bg-light);
            color: var(--text-dark);
            border: 2px solid var(--primary-light);
        }

        .back-btn:hover {
            background: var(--primary-light);
            color: white;
        }

        .next-btn {
            background: var(--primary-color);
            color: white;
            border: none;
        }

        .next-btn:hover {
            background: var(--primary-dark);
        }

        .next-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        /* Error Box */
        .error-box {
            display: none;
            padding: 10px;
            background: #f8d7da;
            color: #721c24;
            border-radius: 10px;
            margin-top: 10px;
            font-size: 0.875rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
            }

            .modal-header {
                padding: 15px 20px;
            }

            .modal-body {
                padding: 20px;
            }

            .modal-footer {
                padding: 15px 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .calendar-container {
                max-width: 100%;
            }
        }



        /* ========================================= */
        /* GALERİ SAYFASI STİLLERİ                   */
        /* ========================================= */

        /* Sayfa Başlığı (Breadcrumb) Alanı */
        .page-header {
            position: relative;
            height: 45vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .page-header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            animation: zoomInOut 20s infinite alternate;
            /* Hafif zoom animasyonu */
        }

        /* Arkaplan resmi için zoom animasyonu */
        @keyframes zoomInOut {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.1);
            }
        }

        .page-header-content {
            position: relative;
            z-index: 10;
        }

        .page-header-content nav {
            display: flex;
            justify-content: center;
        }

        .page-header-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .page-header-content .breadcrumb-animated {
            display: inline-flex;
            list-style: none;
            padding: 0;
            margin: 0;
            background: rgba(0, 0, 0, 0.2);
            padding: 10px 20px;
            border-radius: 20px;
        }

        .page-header-content .breadcrumb-item {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .page-header-content .breadcrumb-item a {
            color: var(--text-sun);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .page-header-content .breadcrumb-item a:hover {
            color: var(--primary-light);
        }

        .page-header-content .breadcrumb-item.active {
            color: var(--primary-color);
        }

        .page-header-content .breadcrumb-item+.breadcrumb-item::before {
            content: '>';
            padding: 0 10px;
            color: var(--text-sun);
        }

        /* Yüklenme animasyonları */
        .page-title-animated {
            animation: fadeInUp 1.5s ease-out;
        }

        .breadcrumb-animated {
            animation: fadeInUp 1.5s ease-out 0.3s;
            animation-fill-mode: both;
        }


        /* Galeri Bölümü */
        .gallery-section {
            padding: 120px 40px;
            background: var(--bg-light);
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Galeri Filtre Butonları */
        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            /* Mobil uyumluluk için */
        }

        .filter-btn {
            font-family: 'Montserrat', sans-serif;
            background: white;
            color: var(--text-dark);
            border: 2px solid var(--primary-light);
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .filter-btn:hover {
            background: var(--primary-light);
            color: white;
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-dark);
        }

        /* Galeri Grid Yapısı */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
            transform: scale(1);
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(184, 149, 106, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Galeri Resim Üzeri Overlay */
        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            /* İçeriği aşağıya yasla */
            padding: 25px;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .overlay-content {
            color: white;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-content h4 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            margin: 0 0 5px 0;
            font-weight: 600;
        }

        .overlay-content p {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            margin: 0;
            color: var(--primary-light);
        }


        /* Scroll Animasyonları */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Galeri Filtreleme Animasyonları */
        .gallery-item {
            transition: transform 0.4s ease, opacity 0.4s ease;
            transform: scale(0.8);
            opacity: 0;
            display: none;
            /* Başlangıçta gizli */
        }

        .gallery-item.show {
            transform: scale(1);
            opacity: 1;
            display: block;
            /* Görünür yap */
        }

        /* Mobil ve Tablet Uyumluluğu */
        @media (max-width: 968px) {
            .gallery-section {
                padding: 80px 20px;
            }

            .page-header {
                height: 40vh;
            }

            .page-header-content h1 {
                font-size: 48px;
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                /* Mobilde tek sütun */
            }

            .filter-btn {
                padding: 8px 20px;
                font-size: 13px;
            }
        }








        /* Contact Page Specific Styles */
        .contact-page-header {
            position: relative;
            height: 45vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .contact-header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/contact-header-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .contact-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(184, 149, 106, 0.3) 100%);
        }

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

        .contact-header-content nav {
            display: flex;
            justify-content: center;
        }

        .contact-page-title {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .contact-breadcrumb {
            display: inline-flex;
            list-style: none;
            padding: 10px 25px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 25px;
            margin: 0;
        }

        .contact-breadcrumb li {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        .contact-breadcrumb a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-breadcrumb a:hover {
            color: var(--primary-light);
        }

        .contact-breadcrumb li.active {
            color: var(--primary-color);
        }

        .contact-breadcrumb li+li::before {
            content: '›';
            padding: 0 12px;
            color: #fff;
        }

        /* Main Contact Section */
        .main-contact-section {
            background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
            padding: 100px 20px;
            min-height: 60vh;
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-intro {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-subtitle {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-main-title {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 17px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Two Column Layout */
        .contact-columns {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 50px;
            align-items: start;
        }

        /* Left Column - Contact Info */
        .contact-info-column {
            background: white;
            padding: 45px 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .info-column-title {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            color: var(--text-dark);
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
        }

        .contact-info-block {
            margin-bottom: 30px;
        }

        .info-block-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .info-icon {
            width: 24px;
            height: 24px;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .info-block-title {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-dark);
            margin: 0;
        }

        .info-block-content {
            padding-left: 36px;
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
        }

        .info-block-content p {
            margin: 5px 0;
        }

        /* Map Container */
        .contact-map-box {
            margin-top: 40px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 4px solid #f5f5f5;
        }

        .contact-map-box iframe {
            display: block;
            width: 100%;
            height: 350px;
            border: 0;
        }

        /* Right Column - Form */
        .contact-form-column {
            background: white;
            padding: 45px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .form-column-title {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .contact-form-group {
            margin-bottom: 25px;
        }

        .contact-form-label {
            display: block;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .contact-form-input,
        .contact-form-textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8e8e8;
            border-radius: 10px;
            background: #fafafa;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            color: var(--text-dark);
            transition: all 0.3s;
        }

        .contact-form-input:focus,
        .contact-form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            background: white;
            box-shadow: 0 0 0 4px rgba(184, 149, 106, 0.1);
        }

        .contact-form-textarea {
            resize: vertical;
            min-height: 140px;
        }

        .contact-submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(184, 149, 106, 0.3);
        }

        .contact-submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(184, 149, 106, 0.4);
        }

        /* Alert Messages */
        .contact-alert {
            padding: 16px 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            font-size: 15px;
            text-align: center;
            font-weight: 500;
        }

        .contact-alert.success {
            background: #d4edda;
            color: #155724;
            border: 2px solid #c3e6cb;
        }

        .contact-alert.error {
            background: #f8d7da;
            color: #721c24;
            border: 2px solid #f5c6cb;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-columns {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .contact-page-header {
                height: 35vh;
                margin-top: 70px;
            }

            .contact-page-title {
                font-size: 40px;
            }

            .main-contact-section {
                padding: 60px 15px;
            }

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

            .contact-info-column,
            .contact-form-column {
                padding: 30px 25px;
            }
        }

        /* Var Olan Header Stilleri (Referans İçin) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--primary-dark);
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-bottom: 0 !important;
    align-items: center; /* Butonun dikeyde hizalanması için eklendi */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-sun);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.appointment-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.appointment-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

/* YENİ EKLENEN MOBİL UYUMLULUK KODLARI */

/* Hamburger menü başlangıçta gizli */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1002; /* Menünün üstünde kalması için */
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

/* Mobil menüdeki buton başlangıçta gizli */
.nav-btn-container {
    display: none;
}


/* Tablet ve Mobil Cihazlar için Media Query (992px ve altı) */
@media (max-width: 992px) {
    .header-container {
        padding: 15px 20px; /* Mobil için padding ayarı */
    }

    nav {
        gap: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Başlangıçta ekranın dışında */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff; /* Açılır menü için arka plan rengi */
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 20px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-links.active {
        right: 0; /* Menüyü aktif hale getirince ekranın içine kaydır */
    }

    .nav-links a {
        color: #333; /* Açılır menüdeki link rengi */
        font-size: 18px;
    }

    /* Mobil menüdeki butonu görünür yap */
    .nav-btn-container {
        display: block;
    }

    /* Masaüstündeki butonu gizle */
    .desktop-btn {
        display: none;
    }

    /* Hamburger menüyü görünür yap */
    .hamburger-menu {
        display: block;
    }

    /* Hamburger ikonunu 'X' işaretine dönüştürme animasyonu */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}