 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #800080;
            --primary-dark: #660066;
            --secondary-color: #990099;
            --accent-color: #ff6b6b;
            --background-color: #f8f9fa;
            --text-color: #333;
            --light-text: #fff;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-color);
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        /* Header Styles */
        header.banner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--light-text);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        header.banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .banner-left {
            display: flex;
            align-items: center;
            z-index: 1;
            flex: 1;
        }

        /* Hamburger Menu Button */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            margin-right: 15px;
        }

        .hamburger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--light-text);
            border-radius: 3px;
            transition: var(--transition);
        }

        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .logo-link img {
            height: 80px;
            margin-right: 20px;
            border-radius: 8px;
            transition: var(--transition);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            background-color: white;
            padding: 5px;
        }

        .logo-link img:hover {
            transform: scale(1.05);
        }

        #header-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--light-text);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            flex: 1;
        }

        .title-link:hover #header-title {
            color: #ffd700;
        }

        .banner-right {
            display: flex;
            align-items: center;
            z-index: 1;
        }

        .banner-image {
            height: 80px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .banner-image:hover {
            transform: scale(1.05);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            transition: var(--transition);
            opacity: 0;
        }

        .mobile-menu-overlay.active {
            left: 0;
            opacity: 1;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-dark), var(--primary-color));
            z-index: 1000;
            transition: var(--transition);
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-menu-logo {
            height: 50px;
            background-color: white;
            padding: 3px;
            border-radius: 4px;
        }

        .close-menu {
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-menu:hover {
            color: var(--accent-color);
            transform: scale(1.1);
        }

        .mobile-menu-items {
            padding: 0;
        }

        /* YENİ MOBİL MENÜ YAPISI - OKLAR DÜZELTİLDİ */
        .mobile-menu-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-item:last-child {
            border-bottom: none;
        }

        .mobile-menu-link-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .mobile-menu-link-wrapper > a {
            flex: 1;
            padding: 16px 20px;
            color: var(--light-text);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
            display: flex;
            align-items: center;
            min-height: 52px;
        }

        .mobile-menu-link-wrapper > a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* MOBİL MENÜ OKLARI - KÜÇÜK BOYUT */
        .mobile-submenu-toggle {
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
            padding: 16px 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            width: 45px; /* KÜÇÜK GENİŞLİK */
            height: 52px;
        }

        .mobile-submenu-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-submenu-toggle .chevron {
            transition: transform 0.3s ease;
            width: 16px; /* KÜÇÜK BOYUT */
            height: 16px; /* KÜÇÜK BOYUT */
        }

        .mobile-submenu-toggle.active .chevron {
            transform: rotate(180deg);
        }

        .mobile-submenu {
            display: none;
            background: rgba(0, 0, 0, 0.2);
        }

        .mobile-submenu.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        .mobile-submenu a {
            display: block;
            padding: 14px 20px 14px 40px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mobile-submenu a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--light-text);
        }

        /* Desktop Navigation Styles */
        nav.menu {
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .menu-item {
            position: relative;
        }

        .menu-item > a {
            color: var(--light-text);
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            text-align: center;
            transition: var(--transition);
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .menu-item > a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }

        .menu-item:hover > a {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu-item:hover > a::before {
            width: 100%;
        }

        .menu-item .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: var(--card-shadow);
            border-radius: 0 0 8px 8px;
            overflow: hidden;
            z-index: 1000;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .menu-item:hover .submenu {
            display: block;
            opacity: 1;
            transform: translateY(0);
            animation: fadeIn 0.3s ease;
        }

        .submenu a {
            color: var(--text-color);
            padding: 12px 20px;
            display: block;
            border-bottom: 1px solid #f0f0f0;
            transition: var(--transition);
        }

        .submenu a:hover {
            background-color: #f8f9fa;
            color: var(--primary-color);
            padding-left: 25px;
        }

        .submenu a:last-child {
            border-bottom: none;
        }

        /* Main Content */
        .main-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            min-height: 60vh;
        }

        .page-header {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 15px;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--accent-color);
        }

        /* Odalarımız Sayfası Özel Stilleri */
        .oda-search-filter {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .search-box {
            position: relative;
            flex: 1;
            min-width: 250px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-size: 16px;
            transition: var(--transition);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(128, 0, 128, 0.1);
        }

        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }

        .filter-select {
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-size: 16px;
            background-color: white;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .odalar-container {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            margin-bottom: 40px;
        }

        .odalar-table {
            width: 100%;
            border-collapse: collapse;
        }

        .odalar-table thead {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--light-text);
        }

        .odalar-table th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
            position: sticky;
            top: 0;
        }

        .odalar-table td {
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .odalar-table tr:last-child td {
            border-bottom: none;
        }

        .odalar-table tr:hover {
            background-color: #f8f9fa;
        }

        .oda-no {
            font-weight: 600;
            color: var(--primary-dark);
            width: 50px;
        }

        .oda-adi {
            font-weight: 600;
            color: var(--text-color);
        }

        .oda-baskan {
            color: var(--text-color);
        }

        .oda-telefon a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .oda-telefon a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .oda-adres {
            color: #555;
            font-size: 14px;
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: #777;
            display: none;
        }

        .no-results i {
            font-size: 48px;
            margin-bottom: 15px;
            color: #ddd;
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            padding: 40px 0 20px;
            color: var(--light-text);
            margin-top: 60px;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 15px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--light-text);
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 10px;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
            display: block;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--light-text);
            text-decoration: underline;
            transform: translateX(5px);
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .contact-info i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .social-media {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light-text);
            font-size: 18px;
            transition: var(--transition);
            position: relative;
            text-decoration: none;
        }

        .social-icon i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .social-icon:hover {
            background-color: var(--light-text);
            color: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 20px;
        }

        .allt-copy {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideDown {
            from { 
                opacity: 0;
                max-height: 0;
            }
            to { 
                opacity: 1;
                max-height: 500px;
            }
        }

        /* Tüm bağlantılardan alt çizgileri kaldır */
        a {
            text-decoration: none;
        }

        /* Alt menü bağlantıları için özel stil */
        .submenu a {
            text-decoration: none;
        }

        .mobile-submenu a {
            text-decoration: none;
        }

        /* Footer bağlantıları için */
        .footer-section a {
            text-decoration: none;
        }

        /* Hover durumunda alt çizgi eklemek isterseniz */
        a:hover {
            text-decoration: underline;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            #header-title {
                font-size: 24px;
            }
            
            .menu-item > a {
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .odalar-table {
                display: block;
                overflow-x: auto;
            }
            
            .oda-search-filter {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-box, .filter-select {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            /* Hamburger menu görünür ve SOL KÖŞEYE HİZALANDI */
            .hamburger-menu {
                display: flex;
                order: -1;
                margin-right: 15px;
            }

            /* Desktop menüyü gizle */
            nav.menu {
                display: none;
            }

            header.banner {
                flex-direction: row;
                text-align: left;
                padding: 12px 5%;
            }
            
            .banner-left {
                flex-direction: row;
                margin-bottom: 0;
                align-items: center;
                justify-content: flex-start;
            }
            
            .logo-link img {
                margin-right: 15px;
                margin-bottom: 0;
                height: 60px;
            }
            
            #header-title {
                font-size: 18px;
                text-align: left;
                flex: 1;
            }
            
            .banner-image {
                height: 60px;
            }
            
            .odalar-table thead {
                display: none;
            }
            
            .odalar-table, .odalar-table tbody, .odalar-table tr, .odalar-table td {
                display: block;
                width: 100%;
            }
            
            .odalar-table tr {
                margin-bottom: 15px;
                border: 1px solid #f0f0f0;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            }
            
            .odalar-table td {
                border-bottom: 1px solid #f0f0f0;
                padding: 12px 15px;
                position: relative;
                padding-left: 50%;
            }
            
            .odalar-table td:before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                width: 45%;
                padding-right: 10px;
                font-weight: 600;
                color: var(--primary-dark);
            }
            
            .odalar-table td:last-child {
                border-bottom: none;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 600px) {
            #header-title {
                font-size: 16px;
            }
            
            .logo-link img {
                height: 50px;
                margin-right: 10px;
            }
            
            .hamburger-menu {
                margin-right: 10px;
            }
            
            .banner-left {
                justify-content: flex-start;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            #header-title {
                font-size: 14px;
            }
            
            .logo-link img {
                height: 45px;
                margin-right: 8px;
            }

            .banner-image {
                height: 50px;
            }

            .hamburger-menu {
                width: 25px;
                height: 18px;
                margin-right: 8px;
            }

            .hamburger-menu span {
                height: 2px;
            }
            
            header.banner {
                padding: 10px 4%;
            }
        }

        @media (max-width: 380px) {
            #header-title {
                font-size: 12px;
            }
            
            .logo-link img {
                height: 40px;
                margin-right: 6px;
            }
            
            .banner-image {
                height: 45px;
            }
            
            .hamburger-menu {
                margin-right: 6px;
                width: 22px;
                height: 16px;
            }
            
            header.banner {
                padding: 8px 3%;
            }
        }

        /* Ek hizalama için */
        @media (max-width: 768px) {
            .banner-left {
                width: 100%;
                justify-content: flex-start;
            }
            
            .hamburger-menu {
                align-self: center;
            }
            
            .logo-link {
                display: flex;
                align-items: center;
            }
            
            .title-link {
                display: flex;
                align-items: center;
                flex: 1;
            }
        }
    