        /* GENEL STİLLER BAŞLANGIÇ */
        html {
            overflow-x: hidden;
            max-width: 100%;
        }
        
        body {
            font-family: Arial, sans-serif;
            position: relative;
            overflow-x: hidden;
            max-width: 100%;
            padding-right: 0 !important;
        }
            

        /* Hareket Eden PNG Arka Plan */
        .moving-background {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .bg-image {
            position: absolute;
            opacity: 0.35;
            max-width: 150px;
            height: auto;
        }

        .bg-image-1 {
            top: 5%;
            left: -15%;
            animation: moveTop 22s linear infinite;
        }

        .bg-image-2 {
            bottom: 10%;
            right: -15%;
            animation: moveBottom 26s linear infinite;
        }

        .bg-image-3 {
            bottom: 5%;
            left: -15%;
            animation: moveSide 24s linear infinite;
        }

        .bg-image-4 {
            top: 3%;
            right: -15%;
            animation: moveTop2 28s linear infinite;
        }

        .bg-image-5 {
            bottom: 15%;
            left: -15%;
            animation: moveBottom2 30s linear infinite;
        }

        .bg-image-6 {
            top: 8%;
            left: -15%;
            animation: moveDiagonal 25s linear infinite;
        }

        .bg-image-7 {
            bottom: 8%;
            right: -15%;
            animation: moveWave 27s linear infinite;
        }

        .bg-image-8 {
            top: 2%;
            left: -15%;
            animation: moveZigzag 23s linear infinite;
        }

        @keyframes moveTop {
            0% {
                left: -15%;
                top: 5%;
                transform: rotate(0deg);
            }
            25% {
                left: 15%;
                top: 2%;
                transform: rotate(90deg);
            }
            50% {
                left: 50%;
                top: 0%;
                transform: rotate(180deg);
            }
            75% {
                left: 85%;
                top: 2%;
                transform: rotate(270deg);
            }
            100% {
                left: 115%;
                top: 5%;
                transform: rotate(360deg);
            }
        }

        @keyframes moveTop2 {
            0% {
                right: -15%;
                top: 3%;
                transform: rotate(0deg);
            }
            33% {
                right: 30%;
                top: 1%;
                transform: rotate(-120deg);
            }
            66% {
                right: 70%;
                top: 2%;
                transform: rotate(-240deg);
            }
            100% {
                right: 115%;
                top: 3%;
                transform: rotate(-360deg);
            }
        }

        @keyframes moveBottom {
            0% {
                right: -15%;
                bottom: 10%;
                transform: rotate(0deg) scale(1);
            }
            25% {
                right: 15%;
                bottom: 5%;
                transform: rotate(-90deg) scale(1.1);
            }
            50% {
                right: 50%;
                bottom: 3%;
                transform: rotate(-180deg) scale(0.9);
            }
            75% {
                right: 85%;
                bottom: 5%;
                transform: rotate(-270deg) scale(1.05);
            }
            100% {
                right: 115%;
                bottom: 10%;
                transform: rotate(-360deg) scale(1);
            }
        }

        @keyframes moveBottom2 {
            0% {
                left: -15%;
                bottom: 15%;
                transform: rotate(0deg);
            }
            20% {
                left: 20%;
                bottom: 12%;
                transform: rotate(72deg);
            }
            40% {
                left: 40%;
                bottom: 8%;
                transform: rotate(144deg);
            }
            60% {
                left: 60%;
                bottom: 12%;
                transform: rotate(216deg);
            }
            80% {
                left: 80%;
                bottom: 15%;
                transform: rotate(288deg);
            }
            100% {
                left: 115%;
                bottom: 15%;
                transform: rotate(360deg);
            }
        }

        @keyframes moveSide {
            0% {
                left: -15%;
                bottom: 5%;
                transform: rotate(0deg);
            }
            20% {
                left: 10%;
                bottom: 40%;
                transform: rotate(72deg);
            }
            40% {
                left: 50%;
                bottom: 60%;
                transform: rotate(144deg);
            }
            60% {
                left: 90%;
                bottom: 40%;
                transform: rotate(216deg);
            }
            80% {
                left: 110%;
                bottom: 15%;
                transform: rotate(288deg);
            }
            100% {
                left: 115%;
                bottom: 5%;
                transform: rotate(360deg);
            }
        }

        @keyframes moveDiagonal {
            0% {
                left: -15%;
                top: 8%;
                transform: rotate(0deg) scale(1);
            }
            50% {
                left: 50%;
                top: 4%;
                transform: rotate(180deg) scale(0.85);
            }
            100% {
                left: 115%;
                top: 8%;
                transform: rotate(360deg) scale(1);
            }
        }

        @keyframes moveWave {
            0% {
                right: -15%;
                bottom: 8%;
                transform: rotate(0deg);
            }
            25% {
                right: 25%;
                bottom: 3%;
                transform: rotate(-90deg);
            }
            50% {
                right: 50%;
                bottom: 10%;
                transform: rotate(-180deg);
            }
            75% {
                right: 75%;
                bottom: 3%;
                transform: rotate(-270deg);
            }
            100% {
                right: 115%;
                bottom: 8%;
                transform: rotate(-360deg);
            }
        }

        @keyframes moveZigzag {
            0% {
                left: -15%;
                top: 2%;
                transform: rotate(0deg);
            }
            20% {
                left: 15%;
                top: 6%;
                transform: rotate(60deg);
            }
            40% {
                left: 35%;
                top: 1%;
                transform: rotate(120deg);
            }
            60% {
                left: 60%;
                top: 5%;
                transform: rotate(180deg);
            }
            80% {
                left: 85%;
                top: 1%;
                transform: rotate(240deg);
            }
            100% {
                left: 115%;
                top: 2%;
                transform: rotate(360deg);
            }
        }

        a {
            text-decoration: none;
            color: #000;
        }

        /* Animasyonlar */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-title {
            animation: fadeInDown 1s ease-out;
        }

        .animate-slider {
            animation: scaleIn 1.2s ease-out 0.3s both;
        }

        /* Hastane Slider Stilleri */
        #hospitalCarousel .carousel-inner {
            border-radius: 10px;
            overflow: hidden;
        }

        #hospitalCarousel .carousel-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            max-height: 800px;
        }

        #hospitalCarousel .carousel-control-prev,
        #hospitalCarousel .carousel-control-next {
            width: 50px;
            height: 50px;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 102, 102, 0.7);
            border-radius: 50%;
            opacity: 0.8;
        }

        #hospitalCarousel .carousel-control-prev:hover,
        #hospitalCarousel .carousel-control-next:hover {
            background-color: rgba(0, 102, 102, 0.9);
            opacity: 1;
        }

        #hospitalCarousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #006666;
            opacity: 0.5;
        }

        #hospitalCarousel .carousel-indicators button.active {
            opacity: 1;
            background-color: #006666;
        }

        /* GENEL STİLLER BİTİŞ */

        /* MENÜ STİLİ BAŞLANGIÇ*/
        .navbar-brand img {
            height: 100px;
        }

        .navbarmenu img {
            height: 70px;
        }

        .offcanvas-header {
            padding: 20px;
            border-bottom: 2px solid rgba(0, 102, 102, 0.1);
        }

        .offcanvas.offcanvas-end {
            width: 320px;
            max-width: 85vw;
        }

        .navbar-wrapper {
            width: 95%;
            max-width: 100%;
            padding: 0 10px;
        }

        .btn-webshop {
            background-color: #006666;
            color: #fff;
            border-radius: 20px;
            padding: 5px 15px;
            font-weight: bold;
            border: none;
            font-size: 0.9rem;

        }

        .btn-webshop:hover {
            color: #006666;
            border-radius: 20px;
            padding: 5px 15px;
            font-weight: bold;
            border: none;
        }

        .navbar-contact {
            font-size: 0.9rem;
            font-weight: bold;
            gap: 1rem !important;
            margin-left: auto;
            margin-right: 100px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .offcanvas-body {
            display: flex;
            flex-direction: column;
            padding: 20px;
            overflow-y: auto;
        }

        .offcanvas-body a {
            display: block;
            padding: 12px 15px;
            font-size: 12px;
            color: #000;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 102, 102, 0.1);
            transition: all 0.3s ease;
        }

        .offcanvas-body a:hover {
            background-color: rgba(0, 102, 102, 0.05);
            padding-left: 20px;
            color: #006666;
        }

        .contact-info {
            font-size: 12px;
            line-height: 1.6;
        }

        .offcanvas-footer {
            margin-top: auto;
            padding-top: 20px;
            border-top: 2px solid rgba(0, 102, 102, 0.2);
        }

        .phone-border {
            padding: 8px 20px;
            border: 2px solid #006666;
            border-radius: 30px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            color: #006666 !important;
            box-shadow: 0 4px 15px rgba(0, 102, 102, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
            font-size: 0.85rem;
        }

        .phone-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #006666, #00a3a3, #00c8c8);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .phone-border:hover::before {
            left: 0;
        }

        .phone-border:hover {
            color: #fff !important;
            border-color: #00a3a3;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 163, 163, 0.3);
        }

        .phone-border::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .phone-border:hover::after {
            width: 300px;
            height: 300px;
        }

        /* Yol Tarifi Butonu - Extra Dikkat Çekici */
        .btn-highlight {
            background: linear-gradient(135deg, #006666, #00a3a3) !important;
            color: #fff !important;
            border: 2px solid #00a3a3 !important;
            animation: pulse 2s ease-in-out infinite;
            position: relative;
        }

        .btn-highlight::before {
            background: linear-gradient(135deg, #00a3a3, #00c8c8, #006666) !important;
        }

        .btn-highlight:hover {
            animation: pulse 1s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(0, 163, 163, 0.6) !important;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(0, 163, 163, 0.3);
            }
            50% {
                box-shadow: 0 4px 25px rgba(0, 163, 163, 0.5);
            }
        }

        /* 7/24 Hizmet Badge - Modern & Dikkat Çekici */
        .service-badge {
            position: absolute;
            top: 0;
            right: 0;
            z-index: 10;
        }

        .badge-content {
            position: relative;
            background: linear-gradient(135deg, #006666, #00a3a3, #00c8c8);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
            padding: 15px 30px;
            border-radius: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 8px 30px rgba(0, 163, 163, 0.4);
            transform: rotate(-5deg);
            transition: all 0.3s ease;
        }

        .badge-content:hover {
            transform: rotate(0deg) scale(1.05);
            box-shadow: 0 12px 40px rgba(0, 163, 163, 0.6);
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
        }

        .badge-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-top: 5px;
        }

        .badge-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50px;
            background: rgba(0, 163, 163, 0.3);
            animation: pulseBadge 2s ease-out infinite;
        }

        @keyframes pulseBadge {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.4);
                opacity: 0;
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Mobil responsive */
        @media (max-width: 768px) {
            .service-badge {
                position: absolute;
                top: 40px;
                right: 10px;
                z-index: 10;
            }
            
            .badge-content {
                padding: 8px 15px;
                transform: rotate(-5deg);
            }
            
            .badge-content:hover {
                transform: rotate(0deg) scale(1.02);
            }
            
            .badge-number {
                font-size: 1.4rem;
                letter-spacing: 1px;
            }
            
            .badge-text {
                font-size: 0.7rem;
                letter-spacing: 1.5px;
                margin-top: 2px;
            }
            
            .baslik {
                margin-bottom: 15px !important;
            }
        }
        
        @media (max-width: 576px) {
            .badge-content {
                padding: 6px 12px;
            }
            
            .badge-number {
                font-size: 1.2rem;
                letter-spacing: 0.5px;
            }
            
            .badge-text {
                font-size: 0.6rem;
                letter-spacing: 1px;
            }
        }

        /* Ege Vitalis Akademi Butonu - Modern & Şık */
        .btn-akademi {
            padding: 8px 20px;
            border: 2px solid transparent;
            border-radius: 30px;
            font-weight: 700;
            background: linear-gradient(135deg, #FFB800, #FFA000, #FF8F00);
            color: #fff !important;
            box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
            text-decoration: none;
            margin-left: 10px;
            font-size: 0.85rem;
        }

        .btn-akademi::before {
            content: '🎓';
            position: absolute;
            left: 10px;
            font-size: 1.2rem;
            transition: transform 0.4s ease;
        }

        .btn-akademi:hover::before {
            transform: rotate(360deg);
        }

        .btn-akademi::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FF8F00, #FFB800, #FFA000);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-akademi:hover::after {
            left: 0;
        }

        .btn-akademi:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 25px rgba(255, 184, 0, 0.5);
            border-color: #FFB800;
        }

        .btn-akademi {
            padding-left: 35px;
        }

        /* Pet Care Center Service Cards */
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 102, 102, 0.15);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 102, 102, 0.25);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: #006666;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .info-box {
            box-shadow: 0 10px 40px rgba(0, 102, 102, 0.2);
        }

        /* Hekimlerimiz Sayfası - Modern Doctor Cards */
        .team-hero {
            animation: fadeIn 0.8s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .doctor-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 102, 102, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .doctor-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 102, 102, 0.25);
        }

        .doctor-image-wrapper {
            position: relative;
            overflow: hidden;
            padding-top: 100%; /* 1:1 Aspect Ratio */
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .doctor-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .doctor-card:hover .doctor-image {
            transform: scale(1.1);
        }

        .doctor-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 102, 102, 0.9), transparent);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 20px;
        }

        .doctor-card:hover .doctor-overlay {
            opacity: 1;
        }

        .view-profile {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 30px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .doctor-card:hover .view-profile {
            transform: translateY(0);
        }

        .doctor-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .doctor-name {
            color: #006666;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .doctor-title {
            color: #666;
            font-size: 1rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .doctor-specialties {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .specialty-badge {
            background: linear-gradient(135deg, #e8f5f5, #d4ebeb);
            color: #006666;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(0, 102, 102, 0.1);
        }

        /* Modern Modal Design */
        .modern-modal {
            border-radius: 25px;
            overflow: hidden;
            border: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modern-close {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1050;
            background: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .modern-close:hover {
            transform: rotate(90deg);
            background: #006666;
            color: white;
        }

        .modal-image-section {
            position: relative;
            height: 100%;
            min-height: 600px;
            background: linear-gradient(135deg, #006666, #00a3a3);
            overflow: hidden;
        }

        .modal-doctor-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .modal-gradient-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, rgba(0, 102, 102, 0.8), transparent);
        }

        .modal-info-section {
            padding: 50px 40px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .modal-header-custom {
            margin-bottom: 40px;
        }

        .doctor-badge {
            display: inline-block;
            background: linear-gradient(135deg, #006666, #00a3a3);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .modal-doctor-name {
            color: #006666;
            font-size: 2.5rem;
            font-weight: 800;
            margin: 0;
            line-height: 1.2;
        }

        .modal-content-custom {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-item {
            display: flex;
            gap: 20px;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 20px rgba(0, 102, 102, 0.15);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, #006666, #00a3a3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .info-content {
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex: 1;
        }

        .info-label {
            font-size: 0.85rem;
            color: #666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-value {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
        }

        .expertise-section {
            margin-top: 30px;
            padding: 25px;
            background: white;
            border-radius: 15px;
            border-left: 4px solid #006666;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .expertise-title {
            color: #006666;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .expertise-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .expertise-list li {
            padding-left: 35px;
            position: relative;
            font-size: 1.05rem;
            color: #333;
            line-height: 1.6;
        }

        .expertise-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00a3a3;
            font-weight: bold;
            font-size: 1.5rem;
            top: -2px;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .team-hero {
                padding: 60px 0 !important;
            }

            .team-hero h1 {
                font-size: 2.5rem !important;
            }

            .team-hero p {
                font-size: 1.1rem !important;
            }

            .modal-image-section {
                min-height: 400px;
            }

            .modal-info-section {
                padding: 40px 30px;
            }

            .modal-doctor-name {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .team-hero {
                padding: 40px 0 !important;
            }

            .team-hero h1 {
                font-size: 2rem !important;
            }

            .doctor-name {
                font-size: 1.2rem;
            }

            .modal-image-section {
                min-height: 300px;
            }

            .modal-info-section {
                padding: 30px 20px;
            }

            .modal-doctor-name {
                font-size: 1.8rem;
            }

            .info-item {
                padding: 15px;
            }

            .info-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
            }
        }

        @media (max-width: 576px) {
            .doctor-specialties {
                flex-direction: column;
            }

            .specialty-badge {
                text-align: center;
            }

            .modal-doctor-name {
                font-size: 1.5rem;
            }

            .modal-info-section {
                padding: 25px 15px;
            }

            .info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        /* Yerinde Bakım & Pet Ambulans - Split Sections */
        .split-sections {
            display: flex;
            flex-direction: column;
            gap: 45px;
        }

        .split-row {
            display: flex;
            align-items: stretch;
            gap: 0;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 102, 102, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(0, 102, 102, 0.08);
        }

        .split-row::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(0, 179, 179, 0.4), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .split-row:hover::after {
            opacity: 1;
        }

        .split-row:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 102, 102, 0.1);
            border-color: rgba(0, 102, 102, 0.15);
        }

        .split-row-reverse {
            flex-direction: row-reverse;
        }

        .split-image {
            flex: 0 0 50%;
            max-width: 50%;
            overflow: hidden;
            position: relative;
        }

        .split-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 102, 102, 0.04) 0%, transparent 60%);
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .split-row:hover .split-image::after {
            opacity: 0;
        }

        .split-image-overlay {
            position: absolute;
            top: 24px;
            left: 24px;
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #006666;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .split-row:hover .split-image-overlay {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(0, 102, 102, 0.15);
            background: rgba(0, 102, 102, 0.08);
            border-color: rgba(0, 102, 102, 0.12);
        }

        .split-image img {
            width: 100%;
            height: 100%;
            min-height: 380px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(0.98);
        }

        .split-row:hover .split-image img {
            transform: scale(1.04);
            filter: brightness(1);
        }

        .split-text {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 48px 52px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            width: fit-content;
            background: rgba(0, 102, 102, 0.06);
            color: #006666;
            padding: 7px 18px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            margin-bottom: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 102, 102, 0.12);
        }

        .split-badge:hover {
            background: rgba(0, 102, 102, 0.1);
            border-color: rgba(0, 102, 102, 0.2);
        }

        .split-badge i {
            font-size: 11px;
            opacity: 0.8;
        }

        .split-badge-emergency {
            background: rgba(220, 38, 38, 0.06);
            color: #dc2626;
            border-color: rgba(220, 38, 38, 0.12);
        }

        .split-badge-emergency:hover {
            background: rgba(220, 38, 38, 0.1);
            border-color: rgba(220, 38, 38, 0.2);
        }

        .split-text h2 {
            font-size: 32px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 18px;
            line-height: 1.3;
            position: relative;
            letter-spacing: -0.5px;
        }

        .title-accent {
            position: absolute;
            left: -16px;
            top: 4px;
            width: 3px;
            height: 28px;
            background: linear-gradient(180deg, rgba(0, 163, 163, 0.8), rgba(0, 102, 102, 0.4));
            border-radius: 2px;
        }

        .split-text p {
            color: #666;
            line-height: 1.8;
            font-size: 14.5px;
            margin-bottom: 22px;
            font-weight: 400;
        }

        .split-features {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }

        .split-features li {
            position: relative;
            padding-left: 34px;
            margin-bottom: 11px;
            color: #555;
            font-size: 13.5px;
            line-height: 1.7;
            transition: all 0.3s ease;
        }

        .split-features li:hover {
            color: #006666;
            padding-left: 36px;
        }

        .split-features li i {
            position: absolute;
            left: 0;
            top: 3px;
            width: 22px;
            height: 22px;
            background: rgba(0, 128, 128, 0.06);
            color: #008080;
            font-size: 10px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 128, 128, 0.1);
        }

        .split-features li:hover i {
            background: rgba(0, 128, 128, 0.12);
            transform: scale(1.08);
            border-color: rgba(0, 128, 128, 0.2);
        }

        .split-text .btn-custom {
            align-self: flex-start;
        }

        .btn-split {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 11px 26px;
            background: #006666;
            border: 1px solid rgba(0, 102, 102, 0.15);
            position: relative;
            overflow: hidden;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-split::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(0, 179, 179, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-split:hover {
            background: #008080;
            box-shadow: 0 6px 20px rgba(0, 102, 102, 0.2);
            transform: translateY(-1px);
        }

        .btn-split:hover::before {
            opacity: 1;
        }

        .btn-split span,
        .btn-split i {
            position: relative;
            z-index: 1;
        }

        .btn-split i {
            transition: transform 0.3s ease;
            font-size: 12px;
            opacity: 0.9;
        }

        .btn-split:hover i {
            transform: translateX(3px);
            opacity: 1;
        }

        .btn-split-emergency {
            background: #dc2626;
            border-color: rgba(220, 38, 38, 0.15);
        }

        .btn-split-emergency::before {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(248, 113, 113, 0.2));
        }

        .btn-split-emergency:hover {
            background: #b91c1c;
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
        }

        @media (max-width: 768px) {
            .split-row,
            .split-row-reverse {
                flex-direction: column;
            }

            .split-image,
            .split-text {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .split-image img {
                min-height: 220px;
                height: 250px;
            }

            .split-text {
                padding: 28px 24px;
            }

            .split-text h2 {
                font-size: 24px;
            }

            .split-features li {
                font-size: 13px;
            }
        }

        /* Menu Grid Layout - Modern Kart Tasarımı */
        /* Öne Çıkan Hizmetler Section */
        .services-highlight {
            position: relative;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-badge {
            display: inline-block;
            background: rgba(0, 102, 102, 0.08);
            color: #006666;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            border: 1px solid rgba(0, 102, 102, 0.12);
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-highlight .service-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 26px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 102, 102, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            border: 1px solid rgba(0, 102, 102, 0.08);
            display: flex;
            flex-direction: column;
        }

        .services-highlight .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(0, 102, 102, 0.12);
            border-color: rgba(0, 102, 102, 0.15);
        }

        .services-highlight .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            font-size: 28px;
            transition: all 0.4s ease;
        }

        .service-icon-red {
            background: rgba(220, 38, 38, 0.08);
            color: #dc2626;
        }

        .service-icon-green {
            background: rgba(34, 197, 94, 0.08);
            color: #16a34a;
        }

        .service-icon-blue {
            background: rgba(59, 130, 246, 0.08);
            color: #2563eb;
        }

        .service-icon-purple {
            background: rgba(168, 85, 247, 0.08);
            color: #9333ea;
        }

        .services-highlight .service-card:hover .service-icon {
            transform: scale(1.08);
        }

        .service-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }

        .service-card-desc {
            font-size: 13.5px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .services-highlight .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
            text-align: left;
        }

        .services-highlight .service-features li {
            font-size: 13px;
            color: #555;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .services-highlight .service-features li i {
            width: 18px;
            height: 18px;
            background: rgba(0, 128, 128, 0.08);
            color: #008080;
            font-size: 9px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            background: #006666;
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 102, 102, 0.15);
            margin-top: auto;
        }

        .service-btn:hover {
            background: #008080;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(0, 102, 102, 0.2);
        }

        .service-btn i {
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .service-btn:hover i {
            transform: translateX(2px);
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 28px;
            }

            .services-highlight .service-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 24px;
            }
        }

        /* Modern Service Rows - Hizmetler Sayfası */
        .service-row {
            background: #fff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 102, 102, 0.06);
            border: 1px solid rgba(0, 102, 102, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-row:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 102, 102, 0.1);
            border-color: rgba(0, 102, 102, 0.12);
        }

        .service-row img {
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease;
        }

        .service-row:hover img {
            transform: scale(1.02);
        }

        /* Service Image Wrapper - Consistent Image Treatment */
        .service-image-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 16px;
            background: #f8f9fa;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .service-image-wrapper::before {
            content: '';
            display: block;
            padding-top: 75%; /* 4:3 aspect ratio */
        }

        .service-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 16px;
            transition: transform 0.4s ease, filter 0.3s ease;
        }

        .service-row:hover .service-img {
            transform: scale(1.05);
            filter: brightness(1.05);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .service-image-wrapper {
                margin-top: 20px;
                margin-bottom: 0;
            }
            
            .service-image-wrapper::before {
                padding-top: 66.67%; /* 3:2 aspect ratio on mobile for better space usage */
            }
        }

        /* Modern FAQ Accordion */
        .faq-section {
            position: relative;
        }

        .modern-accordion .accordion-item {
            background: #fff;
            border-radius: 16px;
            border: 1px solid rgba(0, 102, 102, 0.08);
            margin-bottom: 14px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 102, 102, 0.04);
        }

        .modern-accordion .accordion-item:hover {
            box-shadow: 0 4px 20px rgba(0, 102, 102, 0.08);
            border-color: rgba(0, 102, 102, 0.12);
        }

        .modern-accordion .accordion-button {
            background: transparent;
            color: #1a1a1a;
            font-weight: 600;
            font-size: 15px;
            padding: 18px 24px;
            border: none;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        .modern-accordion .accordion-button:not(.collapsed) {
            background: rgba(0, 102, 102, 0.03);
            color: #006666;
            box-shadow: none;
        }

        .modern-accordion .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .modern-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23006666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            width: 1.2rem;
            height: 1.2rem;
            transition: transform 0.3s ease;
        }

        .modern-accordion .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }

        .modern-accordion .accordion-body {
            padding: 18px 24px 24px;
            color: #555;
            font-size: 14px;
            line-height: 1.7;
            background: #fff;
        }

        .modern-accordion .accordion-collapse {
            border: none;
        }

        @media (max-width: 768px) {
            .service-row {
                padding: 25px;
                margin-bottom: 25px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            .services-highlight .service-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .service-card-title {
                font-size: 18px;
            }

            .service-card-desc {
                font-size: 13px;
            }
        }

        /* Menu Grid Layout - Modern Kart Tasarımı */
        /* Sosyal Medya İkonları - Menu Grid İçi */
        .social-icons-row {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            padding: 25px 0 10px;
            flex-wrap: wrap;
        }

        .social-icon-link {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            color: #fff;
            font-size: 22px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
        }

        .social-icon-link::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 14px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .social-icon-link:hover {
            transform: translateY(-5px) rotate(-3deg);
            color: #fff;
        }

        .social-icon-link:hover::before {
            opacity: 1;
        }

        /* Instagram */
        .social-icon-link:nth-child(1) {
            background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
        }
        .social-icon-link:nth-child(1):hover {
            box-shadow: 0 10px 30px rgba(225, 48, 108, 0.5);
            background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        /* YouTube */
        .social-icon-link:nth-child(2) {
            background: #FF0000;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
        }
        .social-icon-link:nth-child(2):hover {
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.45);
            background: #FF0000;
        }

        /* LinkedIn */
        .social-icon-link:nth-child(3) {
            background: #0A66C2;
            box-shadow: 0 4px 15px rgba(10, 102, 194, 0.25);
        }
        .social-icon-link:nth-child(3):hover {
            box-shadow: 0 10px 30px rgba(10, 102, 194, 0.45);
            background: #0A66C2;
        }

        /* Facebook */
        .social-icon-link:nth-child(4) {
            background: #1877F2;
            box-shadow: 0 4px 15px rgba(24, 119, 242, 0.25);
        }
        .social-icon-link:nth-child(4):hover {
            box-shadow: 0 10px 30px rgba(24, 119, 242, 0.45);
            background: #1877F2;
        }

        /* X / Twitter */
        .social-icon-link:nth-child(5) {
            background: #000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .social-icon-link:nth-child(5):hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            background: #000;
        }

        .menu-grid-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 102, 102, 0.1);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 200px);
            gap: 15px;
            padding: 0;
        }

        .menu-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
            display: block;
        }

        .menu-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .menu-card:hover img {
            transform: scale(1.1);
        }

        .menu-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 102, 102, 0.95), rgba(0, 102, 102, 0.7), transparent);
            padding: 25px 20px;
            color: white;
            transition: all 0.4s ease;
        }

        .menu-card:hover .menu-card-overlay {
            background: linear-gradient(to top, rgba(0, 163, 163, 0.95), rgba(0, 163, 163, 0.7), transparent);
            padding-bottom: 35px;
        }

        .menu-card-overlay h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .menu-card-overlay p {
            margin: 5px 0 0 0;
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 400;
        }

        .menu-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 102, 102, 0.3);
        }

        /* Grid Layout Boyutları */
        .card-large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .card-wide {
            grid-column: span 2;
            grid-row: span 1;
        }

        .card-tall {
            grid-column: span 1;
            grid-row: span 2;
        }

        .card-medium {
            grid-column: span 1;
            grid-row: span 1;
        }

        .card-small {
            grid-column: span 1;
            grid-row: span 1;
        }

        /* Acil Servis Kartı Özel Stil */
        .card-emergency {
            background: linear-gradient(135deg, #dc3545, #c82333);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .emergency-overlay {
            position: static;
            background: transparent !important;
            text-align: center;
            padding: 20px !important;
        }

        .card-emergency:hover {
            background: linear-gradient(135deg, #ff4757, #dc3545);
        }

        .emergency-overlay h3 {
            font-size: 2.5rem !important;
            margin-bottom: 5px !important;
        }

        .emergency-overlay p {
            font-size: 1.1rem !important;
            font-weight: 600 !important;
        }

        /* Responsive Tasarım */
        @media (max-width: 1200px) {
            .menu-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(4, 180px);
            }

            .card-large {
                grid-column: span 2;
                grid-row: span 2;
            }
        }

        @media (max-width: 768px) {
            .menu-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
                gap: 10px;
            }

            .card-large,
            .card-wide,
            .card-tall {
                grid-column: span 2;
                grid-row: span 1;
            }

            .menu-card-overlay h3 {
                font-size: 1.1rem;
            }

            .menu-card-overlay p {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .menu-grid {
                grid-template-columns: 1fr;
            }

            .card-large,
            .card-wide,
            .card-tall,
            .card-medium,
            .card-small {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        .btn-style {
            border: 2px solid #006666;
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 1.1rem;
            font-weight: bold;
            display: inline-block;
            color: #000;
            background-color: transparent;
        }

        .btn-style:hover {
            background-color: #006666;
            color: #fff;
            text-decoration: none;
        }

        .navbar-toggler-icon {
            background-image: none;
            width: 2rem;
            height: 2rem;
            position: relative;
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after,
        .navbar-toggler-icon div {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 3px;
            background-color: #006666;
            border-radius: 2px;
        }

        .navbar-toggler-icon::before {
            top: 0.4rem;
        }

        .navbar-toggler-icon div {
            top: 1.1rem;
        }

        .navbar-toggler-icon::after {
            top: 1.8rem;
        }

        /* MENÜ STİLİ BİTİŞ*/

        /* VİDEO ÜSÜ BAŞLIK STİLİ BAŞLANGIÇ*/
        .baslik {
            /* font-family: 'Dancing Script', cursive; */
            color: #F37021;
            font-weight: 300;
        }

        /* VİDEO ÜSÜ BAŞLIK STİLİ BİTİŞ */

        /* YAZILARIN OLDUĞU ALANIN CSS DÜZENLEMESİ BAŞLANGIÇ */
        .wrapper {
            background-color: white;
            padding: 0.5rem;
            width: 86%;
            margin: auto;
        }

        .gallery {
            column-count: 1;
            column-gap: 0.5rem;
            list-style-type: none;

            & li {
                break-inside: avoid;
                min-height: 30vmin;
                margin-bottom: 0.5rem;
                background-color: #222;

                & img {
                    display: block;
                    width: 100%;
                    object-fit: cover;
                    filter: grayscale(100%);
                    transition: opacity 0.3s;
                }
            }
        }

        @media (width > 500px) {
            .gallery {
                columns: 2;
            }
        }

        @media (width > 900px) {
            .gallery {
                columns: 3;
            }
        }

        .fotograf-basligi {
            font-family: 'Dancing Script', cursive;
            bottom: 0;
            left: 0;
            width: 100%;
            color: white;
            padding: 0.5rem;
            font-size: 1.5rem;
            text-align: center;
            font-weight: bold;
            box-sizing: border-box;
        }

        /* YAZILARIN OLDUĞU ALANIN CSS DÜZENLEMESİ BİTİŞ */

        /* YORUMLAR ALANI BAŞLANGIÇ */

        @keyframes rotatorEffect {
            from {
                transform: rotate(12deg);
            }

            50% {
                transform: rotate(-12deg);
            }

            to {
                transform: rotate(12deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .customers-opinions * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            direction: rtl;
            width: 80%;
            margin: auto;
        }

        .customers-opinions {
            max-width: 1440px;
            display: flex;
            margin: 50px auto;
            flex-direction: column;
            gap: 1rem;
            overflow: hidden;
        }

        .customers-opinions-head {
            /* margin: 0 auto 6rem; */
            width: max-content;
            /* font-weight: 700; */
            text-align: left;
            position: relative;
            /* font-family: 'Dancing Script', cursive; */
            color: #F37021;
        }

        .customers-opinions-head::after {
            content: "";
            width: 40%;
            height: 4px;
            background-color: #53cea2;
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            top: 2.7rem;
            margin: auto;
            border-radius: 10px;
        }

        .customers-opinion-body {
            display: flex;
            justify-content: space-between;
        }

        .customers-opinion-box {
            background-color: #fff;
            border-radius: 0.625rem;
            box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px 30px;
            position: relative;
            flex-basis: 30%;
        }

        .customers-opinion-box-info {
            display: none;
        }

        .customers-opinion-box-info.active {
            display: block;
            animation: fadeInUp ease-in 0.3s;
        }

        .customers-opinion-box::before {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            background-color: #0073B2;
            transform: rotate(12deg);
            z-index: -1;
            border-radius: 20px;
            top: 0;
            right: 0;
            animation: rotatorEffect infinite ease-in-out 4s;
        }

        .customers-opinion-box:after {
            content: "”";
            font-size: 105px;
            line-height: 1;
            position: absolute;
            top: 40px;
            z-index: 1;
            font-family: "icons";
            right: 45px;
            color: rgba(0, 0, 0, 0.05);
        }

        .customers-opinion-subheading {
            color: #788784;
            font-size: 0.9375rem;
            margin-bottom: 0.4rem;
            display: block;
            text-align: center;
        }

        .customers-opinion-title {
            font-size: 1.375rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .customers-opinion-comment {
            color: #788784;
            font-size: 0.9375rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .customers-opinion-target-box {
            flex-basis: 70%;
            position: relative;
            margin-top: 4rem;
            min-height: 185px;
            max-height: 200px;
            transition: 0.4s;
        }

        .customers-opinion-target-box-1 {
            width: 140px;
            height: 140px;
            box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.05);
            border-radius: 14px;
            position: absolute;
            left: 33%;
            top: -64px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            background-color: #fff;
        }

        .customers-opinion-target-box-1::before {
            content: "";
            position: absolute;
            top: -12%;
            right: -4rem;
            width: 40px;
            height: 40px;
            background: #F37021;
            border-radius: 10px;
        }

        .customers-opinion-target-box-2 {
            background-color: #fff;
            width: 90px;
            height: 90px;
            box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.05);
            border-radius: 14px;
            position: absolute;
            left: 20%;
            bottom: 40%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .customers-opinion-target-box-2::before {
            content: "";
            position: absolute;
            top: -100%;
            right: -1rem;
            width: 40px;
            height: 40px;
            background: #0073B2;
            border-radius: 10px;
        }

        .customers-opinion-target-box-3 {
            background-color: #fff;
            width: 90px;
            height: 90px;
            box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.05);
            border-radius: 14px;
            position: absolute;
            right: 40%;
            top: -6%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .customers-opinion-target-box-3::before {
            content: "";
            position: absolute;
            top: 0;
            right: -140%;
            width: 40px;
            height: 40px;
            background: #0073B2;
            border-radius: 10px;
        }

        .customers-opinion-target-box-4 {
            background-color: #fff;
            width: 90px;
            height: 90px;
            box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.05);
            border-radius: 14px;
            position: absolute;
            right: 54%;
            bottom: -10%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .customers-opinion-target-box-4::before {
            content: "";
            position: absolute;
            top: 40%;
            right: -12rem;
            width: 40px;
            height: 40px;
            background: #F37021;
            border-radius: 10px;
        }

        @media screen and (min-width: 1024px) and (max-width: 1440px) {
            .customers-opinion-target-box-2 {
                left: 14%;
            }

            .customers-opinion-target-box-3 {
                right: 30%;
            }

            .customers-opinion-target-box-4 {
                right: 45%;
                bottom: -3%;
            }
        }

        @media (max-width: 992px) {
            .customers-opinion-body {
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .customers-opinion-box {
                flex-basis: 100%;
                width: 80%;
            }

            .customers-opinion-target-box {
                flex-basis: 90%;
                margin-top: 14rem;
            }

            .customers-opinion-target-box-1 {
                left: 33%;
                top: -8rem;
            }

            .customers-opinion-target-box-2 {
                left: -1rem;
                bottom: 4rem;
            }

            .customers-opinion-target-box-2::before {
                top: 1rem;
                right: -4rem;
            }

            .customers-opinion-target-box-3 {
                right: 2rem;
                top: -9rem;
            }

            .customers-opinion-target-box-3::before {
                top: -2rem;
                right: -3.5rem;
            }

            .customers-opinion-target-box-4 {
                right: 4rem;
                bottom: 8rem;
            }

            .customers-opinion-target-box-4::before {
                top: 7rem;
                right: -2rem;
            }
        }

        /* YORUMLAR ALANI BİTİŞ */

        /* FOOTER DÜZENLEMELERİ BAŞLANGIÇ */
        :root {
            --primary: #006666;
            --primary-dark: #004D4D;
            --primary-light: #339999;
            --secondary: #F37021;
            --dark: #1A1A2E;
            --darker: #0F0F1B;
            --light: #F8F9FA;
            --lighter: #FFFFFF;
            --gray: #ADB5BD;
            --dark-gray: #495057;
            --success: #28A745;
            --warning: #FFC107;
            --danger: #DC3545;
            --info: #17A2B8;

            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        footer {
            background: linear-gradient(135deg, var(--darker), var(--primary));
            color: var(--lighter);
            padding: 5rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column {
            position: relative;
            z-index: 1;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
        }

        .footer-column p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            display: inline-block;
            transition: var(--transition);
            position: relative;
            padding-left: 1rem;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -5px;
            opacity: 0;
            transition: var(--transition);
            color: var(--secondary);
        }

        .footer-links a:hover {
            color: var(--lighter);
            padding-left: 1.5rem;
        }

        .footer-links a:hover::before {
            left: 0;
            opacity: 1;
        }

        .contact-info {
            margin-top: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: var(--gray);
        }

        .contact-item i {
            margin-right: 0.75rem;
            color: var(--secondary);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .contact-item span {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lighter);
            transition: var(--transition);
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .social-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--secondary);
            opacity: 0;
            transition: var(--transition);
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .social-link:hover::after {
            opacity: 1;
        }

        .social-link i {
            position: relative;
            z-index: 1;
        }

        .newsletter {
            margin-top: 1.5rem;
        }

        .newsletter p {
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .newsletter-input {
            flex: 1;
            min-width: 200px;
            padding: 0.85rem 1.25rem;
            border-radius: 50px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--lighter);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .newsletter-input::placeholder {
            color: var(--gray);
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 2px var(--primary-light);
        }

        .newsletter-btn {
            padding: 0.85rem 1.75rem;
            border-radius: 50px;
            border: none;
            background: var(--secondary);
            color: var(--lighter);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        .newsletter-btn:hover {
            background: #d95f1c;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.85rem;
        }

        .copyright a {
            color: var(--primary-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .copyright a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow-md);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #d95f1c;
            transform: translateY(-5px);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-column {
            animation: fadeIn 0.6s ease forwards;
        }

        .footer-column:nth-child(1) {
            animation-delay: 0.1s;
        }

        .footer-column:nth-child(2) {
            animation-delay: 0.2s;
        }

        .footer-column:nth-child(3) {
            animation-delay: 0.3s;
        }

        .footer-column:nth-child(4) {
            animation-delay: 0.4s;
        }

        @media (max-width: 992px) {
            .container {
                padding: 0 1.5rem;
            }

            .footer-grid {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 3rem 0 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input,
            .newsletter-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-column h3::after {
                width: 40px;
            }
        }

        /* FOOTER DÜZENLEMELERİ BİTİŞ */

        /* HİZMETLER SAYFASI STİLLERİ BAŞLANGIÇ */
        /* Hizmet Listelenmesi Başlangıç  */
        section h2,
        section h4 {
            font-weight: bold;
            color: #006666;
        }

        section p {
            color: #333;
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }

        img {
            width: 100%;
            height: auto;
            /* border-radius: 0.5rem; */
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        }

        @media (max-width: 768px) {

            section h2,
            section h4 {
                font-size: 1.4rem;
            }
        }

        /* Hizmet Listelenmesi Bitiş  */

        /*Sıkça sorulan sorular başlangıç */
        .accordion-button {
            /* background-color: #f8f9fa; */
            color: #006666;
            font-weight: bold;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background-color: #006666;
            color: white;
        }

        .accordion-item {
            border: none;
            border-bottom: 1px solid #ddd;
        }

        .accordion-body {
            color: #333;
        }

        /* Sıkça sorulan sorular bitiş */
        /* HİZMETLER SAYFASI STİLLERİ BİTİŞ */

        /* HEKİMLERİMİZ SAYFASI STİLLERİ BAŞLANGIÇ */

        .team-member {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .modal-body {
            padding: 0;
        }

        .modal-info {
            background-color: #f8f9fa;
            overflow-y: auto;
        }

        .modal-info h3 {
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .modal-info ul {
            list-style-type: disc;
            padding-left: 1.5rem;
        }

        .modal-photo img {
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .modal-body {
                flex-direction: column;
            }

            .modal-photo img {
                height: 300px;
                object-fit: cover;
            }
        }

        /* HEKİMLERİMİZ SAYFASI STİLLERİ BİTİŞ */

        /* HAKKIMIZDA SAYFASI STİLLERİ BAŞLANGIÇ */
        .hero-section {
            position: relative;
            background: url('laboratuvar.jpeg') no-repeat center center/cover;
            color: #fff;
            padding: 6rem 2rem;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            /* koyu transparan overlay */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            text-align: center;
        }

        .hero-content h1 {
            font-weight: bold;
            font-size: 2.5rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-top: 1rem;
        }

        .container-custom {
            max-width: 80%;
            margin: auto;
            padding: 2rem 1rem;
        }

        h1,
        h2 {
            font-weight: bold;
            color: white;
        }

        p {
            font-size: 1rem;
            line-height: 1.6;
            color: #333;
        }

        .btn-custom {
            background-color: #006666;
            color: #fff;
            border-radius: 30px;
            padding: 0.75rem 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            background-color: #004D4D;
            transform: translateY(-2px);
        }

        .section {
            margin-bottom: 4rem;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stagger>* {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards;
        }

        .stagger>*:nth-child(1) {
            animation-delay: 0.2s;
        }

        .stagger>*:nth-child(2) {
            animation-delay: 0.4s;
        }

        .stagger>*:nth-child(3) {
            animation-delay: 0.6s;
        }

        .stagger>*:nth-child(4) {
            animation-delay: 0.8s;
        }

        /* HAKKIMIZDA SAYFASI STİLLERİ BİTİŞ  */

        /* İLETİŞİM SAYFASI STİLLERİ BAŞLANGIÇ */
        section h2 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        section p {
            margin: 0.3rem 0;
            font-size: 1rem;
        }

        /* İLETİŞİM SAYFASI STİLLERİ BİTİŞ */

        /* BLOG SAYFASI DÜZENLEMELERİ BAŞLANGIÇ */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .blog-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .blog-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .blog-content {
            padding: 1rem;
        }

        .blog-content small {
            color: #999;
            font-size: 0.85rem;
        }

        .blog-content h3 {
            font-size: 1.1rem;
            font-weight: bold;
            margin: 0.5rem 0;
        }

        .blog-content p {
            font-size: 0.95rem;
            color: #555;
        }

        .blog-content time {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: #777;
        }

        /* BLOG SAYFASI DÜZENLEMELERİ BİTİŞ */

        /* KARİYER SAYFASI DÜZENLEMELERİ BAŞLANGIÇ */
        .container-career {
            width: 80%;
            margin: auto;
            padding: 2rem 0;
        }

        h1 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .btn-apply {
            background-color: #006666;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            border: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .btn-apply:hover {
            background-color: #004c4c;
        }

        hr {
            margin: 2rem 0;
            border: 0;
            height: 1px;
            background: #ddd;
        }


        ul {
            padding-left: 1.2rem;
        }

        strong {
            font-weight: bold;
        }

        /* KARİYER SAYFASI DÜZENLEMELERİ BİTİŞ */

        /* MOBİL BAZI DÜZENLEMELER  */

        /* MOBİL BAZI DÜZENLEMELER  */

        @media (max-width: 768px) {
            .navbar-brand img {
                width: 280px;
                height: auto;
                /* Mobil için daha küçük boyut */
            }
        }

        @media (max-width: 576px) {
            .navbar-brand img {
                width: 270px;
                height: auto;
                /* Daha küçük ekranlar için daha da küçük */
            }
        }

        @media (max-width: 768px) {
            .navbarmenu img {
                width: 120px;
                height: auto;
            }
        }

        @media (max-width: 576px) {
            .navbarmenu img {
                width: 70px;
                height: auto;
            }
        }


        /* DENEME */

        .grid {
            max-width: 1200px;
            display: grid;
            gap: 0.5rem;
            grid-template-columns: repeat(5, 1fr);
            grid-auto-rows: 120px;
        }

        @media (min-width: 700px) {
            .grid {
                grid-auto-rows: 200px;
            }
        }

        @media (max-width: 699px) {
            .grid {
                grid-template-columns: 1fr !important;
                grid-auto-rows: auto;
            }

            .item[data-active="true"] {
                grid-column: auto !important;
                grid-row: auto !important;
            }
        }

        /* NAVBAR RESPONSIVE DÜZENLEMELER */
        @media (max-width: 1400px) {
            .navbar-contact {
                gap: 0.7rem !important;
            }
            
            .phone-border {
                padding: 7px 16px;
                font-size: 0.8rem;
            }
            
            .btn-akademi {
                padding: 7px 16px;
                padding-left: 32px;
                font-size: 0.8rem;
                margin-left: 8px;
            }
            
            .navbar-brand img {
                height: 90px;
            }
        }

        @media (max-width: 1200px) {
            .navbar-contact {
                gap: 0.5rem !important;
            }
            
            .phone-border {
                padding: 6px 14px;
                font-size: 0.75rem;
                letter-spacing: 0.2px;
            }
            
            .btn-akademi {
                padding: 6px 14px;
                padding-left: 30px;
                font-size: 0.75rem;
                margin-left: 6px;
            }
            
            .btn-akademi::before {
                font-size: 1rem;
                left: 8px;
            }
            
            .navbar-brand img {
                height: 80px;
            }
        }

        @media (max-width: 1100px) {
            .navbar-contact {
                gap: 0.4rem !important;
                margin-left: 15%;
            }
            
            .phone-border {
                padding: 6px 12px;
                font-size: 0.7rem;
            }
            
            .btn-akademi {
                padding: 6px 12px;
                padding-left: 28px;
                font-size: 0.7rem;
                margin-left: 5px;
            }
            
            .btn-akademi::before {
                font-size: 0.9rem;
                left: 7px;
            }
            
            .navbar-brand img {
                height: 75px;
            }
        }

        @media (max-width: 1024px) {
            .navbar-contact {
                display: none !important;
            }
            
            .navbar-brand img {
                height: 80px;
            }
        }

        @media (max-width: 768px) {
            .navbar-brand img {
                height: 70px;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand img {
                height: 60px;
            }
        }

        /* OFFCANVAS RESPONSIVE DÜZENLEMELER */
        @media (max-width: 768px) {
            .offcanvas-body a {
                padding: 10px 12px;
                font-size: 1rem;
            }
            
            .offcanvas-body a:hover {
                padding-left: 16px;
            }
            
            .contact-info {
                font-size: 0.85rem;
            }
            
            .offcanvas-footer {
                padding-top: 15px;
            }
        }

        @media (max-width: 576px) {
            .offcanvas-body {
                padding: 15px;
            }
            
            .offcanvas-body a {
                padding: 8px 10px;
                font-size: 0.95rem;
            }
            
            .offcanvas-body a:hover {
                padding-left: 14px;
            }
            
            .contact-info {
                font-size: 0.8rem;
            }
            
            .offcanvas-header {
                padding: 15px;
            }
            
            .navbarmenu img {
                height: 60px;
            }
        }


        .item {
            position: relative;
            overflow: hidden;
        }

        .item>a {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .item>a img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .item:hover img {
            transform: scale(1.05);
        }

        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 20px;
            opacity: 1;
            transition: opacity 0.3s ease-in-out;
        }

        .item:hover .overlay {
            opacity: 1;
        }

        .overlay h3 {
            color: #fff;
            margin: 0;
            font-size: 1.1rem;
            text-align: center;
            font-family: 'Segoe UI', sans-serif;
        }

        .item[data-active="true"] {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
            z-index: 2;
        }

/* Video Pop-up Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    background: #fff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
}

.video-modal-header {
    background: linear-gradient(135deg, #006666 0%, #008080 100%);
    padding: 28px 32px;
    position: relative;
    text-align: center;
}

.video-modal-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.video-modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Modal responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 90%;
        max-width: 380px;
        border-radius: 16px;
    }
    
    .video-modal-header {
        padding: 20px 50px 20px 20px;
    }
    
    .video-modal-header h2 {
        font-size: 22px;
    }
    
    .video-modal-header p {
        font-size: 13px;
    }
    
    .video-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .video-wrapper {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .video-modal-content {
        width: 95%;
        max-width: 340px;
        border-radius: 12px;
    }
    
    .video-modal-header {
        padding: 18px 44px 18px 16px;
    }
    
    .video-modal-header h2 {
        font-size: 19px;
    }
    
    .video-modal-header p {
        font-size: 12px;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .video-wrapper {
        height: 400px;
    }
}

/* ============================================
   BİRİMLERİMİZ PAGE STYLES
   ============================================ */

/* Search Bar Styles */
.birimler-search-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.birimler-search-container {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid rgba(0, 102, 102, 0.15);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.08);
    transition: all 0.3s ease;
}

.birimler-search-container:hover {
    border-color: rgba(0, 102, 102, 0.3);
    box-shadow: 0 6px 30px rgba(0, 102, 102, 0.12);
}

.birimler-search-container:focus-within {
    border-color: #006666;
    box-shadow: 0 8px 35px rgba(0, 102, 102, 0.18);
}

.birimler-search-container i {
    color: #006666;
    font-size: 18px;
    margin-right: 12px;
}

.birimler-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #1a1a1a;
    background: transparent;
}

.birimler-search-input::placeholder {
    color: #999;
}

/* Birimler Grid */
.birimler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 28px;
    margin-bottom: 2rem;
}

/* Birim Card */
.birim-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.06);
    border: 1px solid rgba(0, 102, 102, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.birim-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 102, 102, 0.12);
    border-color: rgba(0, 102, 102, 0.2);
}

/* Birim Icon */
.birim-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: all 0.4s ease;
}

.birim-card:hover .birim-icon {
    transform: scale(1.08);
}

.birim-icon-red {
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
}

.birim-icon-blue {
    background: rgba(59, 130, 246, 0.08);
    color: #2563eb;
}

.birim-icon-green {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
}

.birim-icon-purple {
    background: rgba(168, 85, 247, 0.08);
    color: #9333ea;
}

.birim-icon-orange {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
}

.birim-icon-pink {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
}

.birim-icon-teal {
    background: rgba(20, 184, 166, 0.08);
    color: #14b8a6;
}

/* Birim Title & Summary */
.birim-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.birim-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Birim Toggle Button */
.birim-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 102, 102, 0.08);
    color: #006666;
    border: 1px solid rgba(0, 102, 102, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}

.birim-toggle:hover {
    background: #006666;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 102, 0.2);
}

.birim-toggle i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* Birim Details (Accordion Content) */
.birim-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    padding-top: 0;
}

.birim-card.active .birim-details {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 102, 102, 0.1);
}

.birim-details p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* No Results Message */
.birimler-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.birimler-no-results i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.birimler-no-results p {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.birimler-no-results small {
    font-size: 14px;
    color: #999;
}

/* CTA Section */
.birimler-cta {
    background: linear-gradient(135deg, #006666 0%, #008080 100%);
    padding: 60px 20px;
    margin: 60px 0 0 0;
}

.birimler-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.birimler-cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.birimler-cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.birimler-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.birimler-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.birimler-cta-btn-primary {
    background: #fff;
    color: #006666;
    border: 2px solid #fff;
}

.birimler-cta-btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.birimler-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.birimler-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.birimler-cta-btn i {
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .birimler-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 24px;
    }
    
    .birimler-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .birimler-cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .birimler-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .birimler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .birimler-search-wrapper {
        margin-bottom: 2rem;
    }
    
    .birim-card {
        padding: 24px;
    }
    
    .birim-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .birim-title {
        font-size: 18px;
    }
    
    .birim-summary {
        font-size: 13px;
    }
    
    .birimler-cta {
        padding: 40px 20px;
    }
    
    .birimler-cta-text h2 {
        font-size: 24px;
    }
    
    .birimler-cta-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .birimler-search-container {
        padding: 10px 20px;
    }
    
    .birimler-search-input {
        font-size: 14px;
    }
    
    .birim-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .birim-toggle {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ========================================
   ALL PETS CARE SECTION - Premium Design
   ======================================== */

.all-pets-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.all-pets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 L60 30 L80 30 L65 42 L70 60 L50 48 L30 60 L35 42 L20 30 L40 30 Z" fill="rgba(0,102,102,0.03)"/></svg>') repeat;
    opacity: 0.4;
    pointer-events: none;
}

.all-pets-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.all-pets-content {
    padding: 20px 0;
}

/* Badge */
.all-pets-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #006666, #008080);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 102, 102, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.all-pets-badge i {
    font-size: 1rem;
}

/* Title */
.all-pets-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.all-pets-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #006666, #00a3a3);
    margin-top: 15px;
    border-radius: 2px;
}

/* Description */
.all-pets-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Stats Row */
.all-pets-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 102, 0.15);
}

.stat-item i {
    font-size: 1.4rem;
    color: #006666;
}

.stat-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* CTA Buttons */
.all-pets-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-all-pets {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-all-pets::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-all-pets:hover::before {
    left: 100%;
}

.btn-all-pets.btn-primary {
    background: linear-gradient(135deg, #006666, #008080);
    color: white;
    border: 2px solid transparent;
}

.btn-all-pets.btn-primary:hover {
    background: linear-gradient(135deg, #008080, #00a3a3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 102, 0.3);
}

.btn-all-pets.btn-secondary {
    background: white;
    color: #006666;
    border: 2px solid #006666;
}

.btn-all-pets.btn-secondary:hover {
    background: #006666;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 102, 0.2);
}

.btn-all-pets i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-all-pets:hover i {
    transform: translateX(3px);
}

/* Image Container */
.all-pets-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.all-pets-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 102, 102, 0.25);
}

.all-pets-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
}

.all-pets-image:hover img {
    transform: scale(1.05);
}

/* Image Badge */
.all-pets-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.all-pets-image-badge i {
    color: #e74c3c;
    font-size: 1.1rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

.all-pets-image-badge span {
    font-weight: 700;
    color: #006666;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .all-pets-wrapper {
        gap: 40px;
    }
    
    .all-pets-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .all-pets-section {
        padding: 60px 0;
    }
    
    .all-pets-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .all-pets-content {
        order: 2;
    }
    
    .all-pets-image {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .all-pets-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .all-pets-title::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .all-pets-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .all-pets-stats {
        justify-content: center;
    }
    
    .all-pets-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .all-pets-section {
        padding: 50px 0;
    }
    
    .all-pets-title {
        font-size: 2rem;
    }
    
    .all-pets-description {
        font-size: 1rem;
    }
    
    .all-pets-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .btn-all-pets {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .all-pets-section {
        padding: 40px 0;
    }
    
    .all-pets-wrapper {
        gap: 30px;
    }
    
    .all-pets-title {
        font-size: 1.8rem;
    }
    
    .all-pets-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .all-pets-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .all-pets-image-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ========================================
   ABOUT PAGE - HAKKIMIZDA SECTIONS
   Modern, Premium, Corporate Design
   ======================================== */

/* Hero About Section */
.about-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #006666;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-detailed-content {
    border-left: 4px solid #006666;
    transition: all 0.3s ease;
}

.about-detailed-content:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 102, 0.15) !important;
}

.about-principles-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 2;
}

.about-principles-list li {
    padding: 10px 0 10px 40px;
    position: relative;
    color: #333;
    font-weight: 500;
}

.about-principles-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #006666, #00a3a3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.about-hero-image img {
    transition: transform 0.4s ease;
}

.about-hero-image:hover img {
    transform: scale(1.02);
}

/* Kurumsal Yaklaşımımız */
.about-philosophy-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #006666, #00a3a3);
    margin: 0 auto;
    border-radius: 2px;
}

.philosophy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 102, 0.15);
    border-color: #006666;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #006666, #008080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #008080, #00a3a3);
}

.philosophy-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Neden Ege Vitalis */
.why-egevitalis-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
    height: 100%;
    border-left: 4px solid #006666;
}

.feature-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 102, 102, 0.15);
    border-left-color: #00a3a3;
}

.feature-card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #006666, #008080);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #008080, #00a3a3);
}

.feature-card-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 80px 0;
    background: white;
}

.mv-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 102, 0.15);
    border-color: #006666;
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.mv-card-header i {
    font-size: 2.5rem;
    color: #006666;
}

.mv-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.mv-card-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.mv-card-body p:last-child {
    margin-bottom: 0;
}

/* Hospital Environment */
.hospital-environment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.environment-image img {
    transition: transform 0.4s ease;
}

.environment-image:hover img {
    transform: scale(1.02);
}

.environment-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.environment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.environment-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.environment-list li:last-child {
    border-bottom: none;
}

.environment-list li i {
    color: #006666;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-hero-section,
    .about-philosophy-section,
    .why-egevitalis-section,
    .mission-vision-section,
    .hospital-environment-section {
        padding: 60px 0;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-card-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero-section,
    .about-philosophy-section,
    .why-egevitalis-section,
    .mission-vision-section,
    .hospital-environment-section {
        padding: 50px 0;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .philosophy-card,
    .mv-card {
        padding: 30px 25px;
    }

    .feature-card {
        padding: 25px;
    }

    .mv-card-header {
        flex-direction: column;
        text-align: center;
    }

    .mv-card-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .philosophy-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .mv-card {
        padding: 25px 20px;
    }

    .environment-list li {
        font-size: 0.95rem;
    }
}

/* ========================================
   CONTACT PAGE - İLETİŞİM SECTIONS
   Modern, Premium Contact Design
   ======================================== */

/* Contact Main Section */
.contact-main-section {
    padding: 40px 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #006666, #00a3a3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 102, 0.15);
    border-color: #006666;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

/* Emergency Card Special Styling */
.emergency-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-color: #e74c3c;
}

.emergency-card::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.emergency-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
}

/* Contact Card Icon */
.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #006666, #008080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #008080, #00a3a3);
}

.emergency-card .contact-card-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Contact Card Content */
.contact-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.contact-card-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Contact Links */
.contact-link {
    color: #006666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: #00a3a3;
    text-decoration: underline;
}

.emergency-link {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
}

.emergency-link:hover {
    color: #c0392b;
}

/* Map Section */
.contact-map-wrapper {
    margin-top: 60px;
}

.contact-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #006666, #00a3a3);
    border-radius: 2px;
}

.contact-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 500px;
    border: 3px solid #f0f0f0;
}

/* FAQ Section */
.faq-section {
    text-align: center;
    margin-bottom: 40px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

/* Enhanced Accordion Styling */
.contact-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.contact-accordion .accordion-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-accordion .accordion-item:hover {
    border-color: #006666;
    box-shadow: 0 5px 20px rgba(0, 102, 102, 0.1);
}

.contact-accordion .accordion-header {
    margin: 0;
}

.contact-accordion .accordion-button {
    background: white;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.contact-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #006666, #008080);
    color: white;
    box-shadow: none;
}

.contact-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.contact-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23006666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.contact-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.contact-accordion .accordion-body {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    background: #f8f9fa;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-section-title {
        font-size: 1.9rem;
    }

    .contact-map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding: 30px 0;
    }

    .contact-info-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-card-title {
        font-size: 1.1rem;
    }

    .contact-section-title {
        font-size: 1.7rem;
    }

    .contact-map-wrapper {
        margin-top: 40px;
    }

    .contact-map-container {
        height: 350px;
    }

    .contact-accordion .accordion-button {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .contact-accordion .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 20px 15px;
    }

    .contact-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .contact-card-title {
        font-size: 1rem;
    }

    .contact-card-text {
        font-size: 0.95rem;
    }

    .contact-section-title {
        font-size: 1.5rem;
    }

    .contact-map-container {
        height: 300px;
        border-radius: 15px;
    }

    .contact-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 15px;
    }

    .emergency-link {
        font-size: 1.1rem;
    }
}

/* Newsletter Message Styles */
.newsletter-message {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}